add rough ruff config

This commit is contained in:
Robert Sachunsky 2025-10-08 15:13:57 +02:00
parent b3d29bef89
commit a144026b27

View file

@ -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",
]