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.
2 parents 6142387 + e503180 commit f8b1a20Copy full SHA for f8b1a20
.flake8
@@ -40,21 +40,20 @@ max-line-length = 100
40
extend-ignore =
41
E203,
42
E501,
43
- F401, # duplicate of pylint W0611 (unused-import)
44
- F821, # duplicate of pylint E0602 (undefined-variable)
45
- F841, # duplicate of pylint W0612 (unused-variable)
+ F401,
+ F821,
+ F841,
46
H,
47
- # Temporary disabled during initial adoption:
48
D103,
49
D104,
50
D200,
51
D205,
52
D400,
53
D401,
54
- S101, # Use of assert detected
55
- S404, # Consider possible security implications associated with subprocess module
56
- S602, # subprocess call with shell=True identified
57
- S603, # subprocess call
+ S101,
+ S404,
+ S602,
+ S603,
58
59
# Allow certain violations in certain files:
60
per-file-ignores =
0 commit comments