Skip to content

Commit

Permalink
chore: ignore PLR0913 ruff rule
Browse files Browse the repository at this point in the history
  • Loading branch information
DeadNews committed Jun 19, 2023
1 parent 0f81f6e commit 2aa2f67
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 2aa2f67

Please sign in to comment.