mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00

* Make witness apworld mostly pass mypy * Fix all remaining mypy errors except the core ones * I'm a goofy stupid poopoo head * Two more fixes * ruff after merge * Mypy for new stuff * Oops * Stricter ruff rules (that I already comply with :3) * Deprecated ruff thing * wait no i lied * lol super nevermind * I can actually be slightly more specific * lint
12 lines
406 B
TOML
12 lines
406 B
TOML
line-length = 120
|
|
|
|
[lint]
|
|
select = ["C", "E", "F", "R", "W", "I", "N", "Q", "UP", "RUF", "ISC", "T20"]
|
|
ignore = ["C9", "RUF012", "RUF100"]
|
|
|
|
[lint.per-file-ignores]
|
|
# The way options definitions work right now, I am forced to break line length requirements.
|
|
"options.py" = ["E501"]
|
|
# The import list would just be so big if I imported every option individually in presets.py
|
|
"presets.py" = ["F403", "F405"]
|