mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
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",
|
||||
"*.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