Skip to content

Commit 11ff810

Browse files
committed
Ruff deprecation noise.
1 parent 7102bd5 commit 11ff810

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ exclude = [
8989

9090
[tool.ruff]
9191
line-length = 79
92+
extend-exclude = ["suite"]
93+
94+
[tool.ruff.lint]
9295
select = ["ALL"]
9396
ignore = [
9497
"A001", # It's fine to shadow builtins
@@ -133,19 +136,18 @@ ignore = [
133136
"TD", # These TODO style rules are also silly
134137
"UP007", # We support 3.8 + 3.9
135138
]
136-
extend-exclude = ["suite"]
137139

138140
[tool.ruff.lint.flake8-pytest-style]
139141
mark-parentheses = false
140142

141-
[tool.ruff.flake8-quotes]
143+
[tool.ruff.lint.flake8-quotes]
142144
docstring-quotes = "double"
143145

144146
[tool.ruff.lint.isort]
145147
combine-as-imports = true
146148
from-first = true
147149

148-
[tool.ruff.per-file-ignores]
150+
[tool.ruff.lint.per-file-ignores]
149151
"noxfile.py" = ["ANN", "D100", "S101", "T201"]
150152
"docs/*" = ["ANN", "D", "INP001"]
151153
"referencing/tests/*" = ["ANN", "D", "RUF012", "S", "PLR", "TRY"]

0 commit comments

Comments
 (0)