Skip to content

Commit

Permalink
Add ignored codes
Browse files Browse the repository at this point in the history
  • Loading branch information
Smartappli authored Jun 30, 2024
1 parent 686785d commit b2e1262
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ select = [
"UP", # pyupgrade
]
ignore = [
"B904", # check for raise statements in exception handlers that lack a from clause
"B905", # zip() without an explicit strict= parameter
"B904", # check for raise statements in exception handlers that lack a from clause
"B905", # zip() without an explicit strict= parameter
"PLR0911", # Too many return statements
"PLR0913", # Too many arguments in function definition
"PLR0915", # Too many statements

]

[lint.per-file-ignores]
Expand Down

0 comments on commit b2e1262

Please sign in to comment.