Add exclusions and line-length for ruff lint support

This commit is contained in:
Jake 2025-04-09 14:31:02 -06:00
parent 5b2963fc46
commit d74b4c4dee

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