16 lines
279 B
TOML
16 lines
279 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"UP", # pyupgrade
|
|
"W", # pycodestyle warnings
|
|
]
|
|
ignore = []
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = ["app"]
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true |