|
| 1 | +[tool.ruff] |
| 2 | +select = [ |
| 3 | + "C4", # flake8-comprehensions |
| 4 | + "C90", # McCabe cyclomatic complexity |
| 5 | + "E", # pycodestyle errors |
| 6 | + "F", # Pyflakes |
| 7 | + "ISC", # flake8-implicit-str-concat |
| 8 | + "PLC", # Pylint Conventions |
| 9 | + "PLE", # Pylint Errors |
| 10 | + "PLR091", # Pylint Refactor just for max-args, max-branches, etc. |
| 11 | + "W", # pycodestyle warnings |
| 12 | + # "A", # flake8-builtins |
| 13 | + # "ANN", # flake8-annotations |
| 14 | + # "ARG", # flake8-unused-arguments |
| 15 | + # "B", # flake8-bugbear |
| 16 | + # "BLE", # flake8-blind-except |
| 17 | + # "COM", # flake8-commas |
| 18 | + # "D", # pydocstyle |
| 19 | + # "DJ", # flake8-django |
| 20 | + # "DTZ", # flake8-datetimez |
| 21 | + # "EM", # flake8-errmsg |
| 22 | + # "ERA", # eradicate |
| 23 | + # "EXE", # flake8-executable |
| 24 | + # "FBT", # flake8-boolean-trap |
| 25 | + # "G", # flake8-logging-format |
| 26 | + # "I", # isort |
| 27 | + # "ICN", # flake8-import-conventions |
| 28 | + # "INP", # flake8-no-pep420 |
| 29 | + # "INT", # flake8-gettext |
| 30 | + # "N", # pep8-naming |
| 31 | + # "NPY", # NumPy-specific rules |
| 32 | + # "PD", # pandas-vet |
| 33 | + # "PGH", # pygrep-hooks |
| 34 | + # "PIE", # flake8-pie |
| 35 | + # "PL", # Pylint |
| 36 | + # "PT", # flake8-pytest-style |
| 37 | + # "PTH", # flake8-use-pathlib |
| 38 | + # "PYI", # flake8-pyi |
| 39 | + # "Q", # flake8-quotes |
| 40 | + # "RET", # flake8-return |
| 41 | + # "RSE", # flake8-raise |
| 42 | + # "RUF", # Ruff-specific rules |
| 43 | + # "S", # flake8-bandit |
| 44 | + # "SIM", # flake8-simplify |
| 45 | + # "SLF", # flake8-self |
| 46 | + # "T10", # flake8-debugger |
| 47 | + # "T20", # flake8-print |
| 48 | + # "TCH", # flake8-type-checking |
| 49 | + # "TID", # flake8-tidy-imports |
| 50 | + # "TRY", # tryceratops |
| 51 | + # "UP", # pyupgrade |
| 52 | + # "YTT", # flake8-2020 |
| 53 | +] |
| 54 | +ignore = [ |
| 55 | + "E402", |
| 56 | + "E703", |
| 57 | + "E711", |
| 58 | + "E712", |
| 59 | + "E721", |
| 60 | + "E741", |
| 61 | + "F401", |
| 62 | + "F811", |
| 63 | + "F841", |
| 64 | + "PLC1901", |
| 65 | + "PLE1205", |
| 66 | +] |
| 67 | +line-length = 250 |
| 68 | +target-version = "py37" |
| 69 | + |
| 70 | +[tool.ruff.mccabe] |
| 71 | +max-complexity = 32 |
| 72 | + |
| 73 | +[tool.ruff.pylint] |
| 74 | +max-args = 15 |
| 75 | +max-branches = 36 |
| 76 | +max-returns = 22 |
| 77 | +max-statements = 130 |
| 78 | + |
| 79 | +[tool.ruff.per-file-ignores] |
| 80 | +"__init__.py" = ["E402"] |
| 81 | +"test/*" = ["S101"] |
0 commit comments