From d940a1fca8bbd67e2396910c687f705148c46b58 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Mon, 16 Sep 2024 00:57:36 -0400 Subject: [PATCH] chore: Add lint.flake8-unused-arguments.ignore-variadic-names --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b2ea815..9ed99cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,13 +48,17 @@ target-version = "py39" select = ["ALL"] ignore = [ "ANN", "C901", "COM812", "D203", "D212", "D415", "EM", "PERF203", "PLR091", "Q000", - "PLR2004", "D100", "D103", "D104", "D205", + "D1", + "PLR2004", # magic "PTH", ] [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/*" = [