Spaces:
Paused
Paused
| # Assume Python 3.12. | |
| target-version = "py312" | |
| # Decrease the maximum line length to 79 characters. | |
| line-length = 300 | |
| # pyflakes, pycodestyle, isort | |
| # flake8 YTT, pydocstyle D, pylint PLC | |
| lint.select = ["F", "E", "W", "I001", "YTT", "D", "PLC"] | |
| # select = ["ALL"] | |
| # D100 Missing docstring in public module | |
| # D101 Missing docstring in public class | |
| # D102 D102 Missing docstring in public method | |
| # D103 Missing docstring in public function | |
| # D107 Missing docstring in `__init__` | |
| # `multi-line-summary-first-line` (D212) | |
| # `one-blank-line-before-class` (D203) | |
| lint.extend-ignore = ["D100", "D101", "D102", "D103", "D107", "D212", "D203"] | |
| exclude = [".venv"] |