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 be581c8 commit 1eee2bd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,20 @@ target-version = "py39"
select = ["ALL"]
ignore = [
"ANN", "C901", "COM812", "D203", "D212", "D415", "EM", "PERF203", "PLR091", "Q000",
"D100", "D101", "D102", "D103",
"PTH",
"ARG001", # sphinx
"D1",
"INP001", # namespace package
"PTH",
"RUF012", # sphinx
"TRY003", # errors
]

[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 1eee2bd

Please sign in to comment.