| # Ruff linter konfigurācija | |
| line-length = 100 | |
| target-version = "py311" | |
| [lint] | |
| select = [ | |
| "E", # pycodestyle | |
| "F", # pyflakes | |
| "I", # isort | |
| "N", # pep8-naming | |
| "UP", # pyupgrade | |
| "B", # bugbear | |
| "SIM", # simplify | |
| ] | |
| ignore = [ | |
| "E501", # line too long (handled by formatter) | |
| "B008", # do not perform function calls in default args | |
| ] | |
| [lint.isort] | |
| known-first-party = ["maris_core"] | |