web/ruff.toml
2024-01-31 06:48:20 +06: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"]}