Merge pull request #3783 from jaborsh/ruff_request

Add exclusions and line-length for ruff lint support
This commit is contained in:
Griatch 2025-04-26 13:05:49 +02:00 committed by GitHub
commit 88550d086f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -170,3 +170,20 @@ omit = [
"*.pyc",
"*.service",
]
[tool.ruff]
exclude = [
"/.eggs/",
"/.git/",
"/.hg/",
"/.mypy_cache/",
"/.tox/",
"/.venv/",
"/_build/",
"/buck-out/",
"/build/",
"/dist/",
"migrations",
"docs",
]
line-length = 100