You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"G202", # Logging statement has redundant `exc_info`
137
145
# isort ('I')
138
146
"I",
147
+
# flake8-import-conventions ('ICN')
139
148
"ICN", # flake8-import-conventions
140
149
# flake8-no-pep420 ('INP')
141
150
"INP",
@@ -327,16 +336,19 @@ select = [
327
336
"S612", # Use of insecure `logging.config.listen` detected
328
337
# "S701", # Using jinja2 templates with `autoescape=False` is dangerous and can lead to XSS. Ensure `autoescape=True` or use the `select_autoescape` function.
329
338
# "S702", # Mako templates allow HTML and JavaScript rendering by default and are inherently open to XSS attacks
339
+
# flake8-simplify ('SIM')
330
340
"SIM", # flake8-simplify
331
341
# flake8-self ('SLF')
332
342
# NOT YET USED
333
-
"SLOT", # flake8-slots
343
+
# flake8-slots ('SLOT')
344
+
"SLOT",
334
345
# flake8-debugger ('T10')
335
346
"T100", # Trace found: `{name}` used
336
347
# flake8-print ('T20')
337
348
"T201", # `print` found
338
349
"T203", # `pprint` found
339
-
"TCH", # flake8-type-checking
350
+
# flake8-type-checking ('TCH')
351
+
"TCH",
340
352
# flake8-todos ('TD')
341
353
# "TD001", # Invalid TODO tag: `{tag}`
342
354
# "TD003", # Missing issue link on the line following this TODO
0 commit comments