Skip to content

Commit

Permalink
ci(ruff): Ignore COM812
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Sep 27, 2023
1 parent bdee94d commit 847d4e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ ignore = [
"B010", # Do not call setattr with a constant attribute value. -- Not always applicable
"RUF012", # type class attrs with `ClassVar` -- Too strict/trigger-happy
"UP007", # Use X | Y for type annotations -- `typer` doesn't support it
"COM812", # Checks for the absence of trailing commas -- leads to undesirable behavior from formatters
"PIE804", # Unnecessary `dict` kwargs -- Inconvenient to enforce
"RET505", # Unnecessary {branch} after return statement -- Lots of false positives
"RET506", # Unnecessary {branch} after raise statement -- Lots of false positives
Expand Down

0 comments on commit 847d4e9

Please sign in to comment.