Merge pull request #3783 from jaborsh/ruff_request
Add exclusions and line-length for ruff lint support
This commit is contained in:
commit
88550d086f
1 changed files with 17 additions and 0 deletions
|
|
@ -170,3 +170,20 @@ omit = [
|
||||||
"*.pyc",
|
"*.pyc",
|
||||||
"*.service",
|
"*.service",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
exclude = [
|
||||||
|
"/.eggs/",
|
||||||
|
"/.git/",
|
||||||
|
"/.hg/",
|
||||||
|
"/.mypy_cache/",
|
||||||
|
"/.tox/",
|
||||||
|
"/.venv/",
|
||||||
|
"/_build/",
|
||||||
|
"/buck-out/",
|
||||||
|
"/build/",
|
||||||
|
"/dist/",
|
||||||
|
"migrations",
|
||||||
|
"docs",
|
||||||
|
]
|
||||||
|
line-length = 100
|
||||||
Loading…
Add table
Add a link
Reference in a new issue