23 lines
367 B
TOML
23 lines
367 B
TOML
[tool.black]
|
|
line-length = 120
|
|
target-version = ["py310"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py310"
|
|
extend-exclude = [
|
|
"admin-frontend",
|
|
"app-frontend",
|
|
"static",
|
|
"templates",
|
|
"__pycache__",
|
|
"data",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E9", "F63", "F7", "F82"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-q --import-mode=prepend"
|