File size: 425 Bytes
f440f03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # 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"]
|