Skip to content

Commit

Permalink
chore: Add lint.flake8-unused-arguments.ignore-variadic-names
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 16, 2024
1 parent 65c8c6d commit 7cdc83c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,19 @@ target-version = "py39"
select = ["ALL"]
ignore = [
"ANN", "C901", "COM812", "D203", "D212", "D415", "EM", "PERF203", "PLR091", "Q000",
"PLR2004", "D1", "D205",
"D1", "D205",
"PLR2004", # magic
"PTH",
"D200", # https://github.com/astral-sh/ruff/issues/6269
"TRY003", # errors
"D200", # https://github.com/astral-sh/ruff/issues/6269
]

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

[tool.ruff.lint.flake8-unused-arguments]
ignore-variadic-names = true

[tool.ruff.lint.per-file-ignores]
"docs/conf.py" = ["D100", "INP001"]
"tests/*" = [
Expand Down

0 comments on commit 7cdc83c

Please sign in to comment.