web/web/ruff.toml
2024-09-20 18:39:12 +05:00

11 lines
185 B
TOML

target-version = "py37"
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade,
"I", # isort
]
line-length = 120
per-file-ignores = {"__init__.py" = ["F401"]}