Skip to content

Commit

Permalink
Ignore bare except in ruff checks
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Sep 24, 2024
1 parent 46a2227 commit ab822f5
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 @@ -9,5 +9,9 @@ select = [
"PLC0414"
]

# Ignore module import not at top of file
ignore = ["E402"]
ignore = [
# Module import not at top of file
"E402",
# Do not use bare `except`
"E722"
]

0 comments on commit ab822f5

Please sign in to comment.