We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fcd9d9 commit 8d5f95fCopy full SHA for 8d5f95f
pyproject.toml
@@ -66,8 +66,10 @@ ignore = [
66
"E2", # conflicts with black
67
"E402", # module level import not at top of file
68
"E501", # conflicts with black
69
+ "E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for isinstance checks
70
"E731", # Do not assign a `lambda` expression, use a `def`
71
"E741", # Ambiguous variable name
72
+ "UP031", # Use format specifiers instead of percent format
73
"UP032", # 'f-string always preferable to format' is controversial
74
"C416", # There are a few cases where it's nice to have names for the dict items
75
]
0 commit comments