From 2aa2f67d388a03e0995bf41a338c03bf5dcfa5c8 Mon Sep 17 00:00:00 2001 From: DeadNews Date: Mon, 19 Jun 2023 16:19:13 +0530 Subject: [PATCH] chore: ignore `PLR0913` ruff rule --- pyproject.toml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 86d4b85..213aeee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,13 +65,14 @@ exclude_lines = ["if TYPE_CHECKING:", "if __name__ == .__main__.:"] line-length = 99 select = ["ALL"] ignore = [ - "COM812", # Trailing comma missing - "D203", # 1 blank line required before class docstring - "D212", # Multi-line docstring summary should start at the first line - "E501", # Line too long - "EXE001", # Shebang is present but file is not executable - "FBT001", # Boolean positional arg in function definition - "FBT002", # Boolean default value in function definition + "COM812", # Trailing comma missing + "D203", # 1 blank line required before class docstring + "D212", # Multi-line docstring summary should start at the first line + "E501", # Line too long + "EXE001", # Shebang is present but file is not executable + "FBT001", # Boolean positional arg in function definition + "FBT002", # Boolean default value in function definition + "PLR0913", # Too many arguments to function call ] [tool.ruff.per-file-ignores]