We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a2227 commit ab822f5Copy full SHA for ab822f5
1 file changed
ruff.toml
@@ -9,5 +9,9 @@ select = [
9
"PLC0414"
10
]
11
12
-# Ignore module import not at top of file
13
-ignore = ["E402"]
+ignore = [
+ # Module import not at top of file
14
+ "E402",
15
+ # Do not use bare `except`
16
+ "E722"
17
+]
0 commit comments