17 lines
427 B
TOML
17 lines
427 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
indent-width = 4
|
|
target-version = "py310"
|
|
src = ["app"]
|
|
|
|
[tool.ruff.lint]
|
|
# Enable pycodestyle ('E'), Pyflakes ('F'), and isort ('I')
|
|
select = ["E", "F", "I"]
|
|
ignore = []
|
|
|
|
# Allow unused variables that start with an underscore.
|
|
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
# Ignore imported but unused in __init__.py files
|
|
"__init__.py" = ["F401"] |