Skip to content

Commit 7cdc83c

Browse files
committed
chore: Add lint.flake8-unused-arguments.ignore-variadic-names
1 parent 65c8c6d commit 7cdc83c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,19 @@ target-version = "py39"
5252
select = ["ALL"]
5353
ignore = [
5454
"ANN", "C901", "COM812", "D203", "D212", "D415", "EM", "PERF203", "PLR091", "Q000",
55-
"PLR2004", "D1", "D205",
55+
"D1", "D205",
56+
"PLR2004", # magic
5657
"PTH",
57-
"D200", # https://github.com/astral-sh/ruff/issues/6269
5858
"TRY003", # errors
59+
"D200", # https://github.com/astral-sh/ruff/issues/6269
5960
]
6061

6162
[tool.ruff.lint.flake8-builtins]
6263
builtins-ignorelist = ["copyright"]
6364

65+
[tool.ruff.lint.flake8-unused-arguments]
66+
ignore-variadic-names = true
67+
6468
[tool.ruff.lint.per-file-ignores]
6569
"docs/conf.py" = ["D100", "INP001"]
6670
"tests/*" = [

0 commit comments

Comments
 (0)