mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-10-15 19:09:58 +02:00
add rough ruff config
This commit is contained in:
parent
b3d29bef89
commit
a144026b27
1 changed files with 15 additions and 0 deletions
|
@ -51,3 +51,18 @@ where = ["src"]
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
branch = true
|
branch = true
|
||||||
source = ["eynollah"]
|
source = ["eynollah"]
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
line-length = 120
|
||||||
|
|
||||||
|
[tool.ruff.lint]
|
||||||
|
ignore = [
|
||||||
|
# disable unused imports
|
||||||
|
"F401",
|
||||||
|
# disable import order
|
||||||
|
"E402",
|
||||||
|
# disable unused variables
|
||||||
|
"F841",
|
||||||
|
# disable bare except
|
||||||
|
"E722",
|
||||||
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue