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 6259c2b commit 5008291Copy full SHA for 5008291
pyproject.toml
@@ -162,9 +162,12 @@ ignore = [
162
# flake8-bandit
163
"S101", # assert used
164
"S105", # possible hardcoded password
165
+ "S113", # probable use of requests call without timeout
166
+ "S324", # probable use of insecure hash functions
167
# flake8-simplify
168
"SIM102", # nested 'if' statements
169
"SIM105", # use contextlib.suppress
170
+ "SIM108", # use ternary operator
171
"SIM117", # use single 'with' statement
172
]
173
external = [ # Whitelist for RUF100 unkown code warnings
0 commit comments