Skip to content

Commit a51ed53

Browse files
committed
'ignore' -> 'lint.ignore'
1 parent bab2039 commit a51ed53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ readme = { file = "README.md", content-type = "text/markdown" }
2424
find = {}
2525

2626
[tool.ruff]
27-
ignore = [
28-
"PLR0912", # Too many branches
29-
"PLR0915", # Too many statements
30-
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
31-
]
3227
exclude = [
3328
".mypy_cache",
3429
"dist",
@@ -52,6 +47,11 @@ select = [
5247
"SIM", # flake8-simplify
5348
"UP", # pyupgrade
5449
]
50+
ignore = [
51+
"PLR0912", # Too many branches
52+
"PLR0915", # Too many statements
53+
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
54+
]
5555

5656
[tool.ruff.format]
5757
quote-style = "single"

0 commit comments

Comments
 (0)