web/ruff.toml

12 lines
185 B
TOML
Raw Normal View History

2024-01-31 00:48:20 +00:00
target-version = "py37"
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade,
"I", # isort
]
line-length = 120
per-file-ignores = {"__init__.py" = ["F401"]}