Skip to content

Commit f8b1a20

Browse files
authored
Merge pull request #143 from konstruktoid/extendignore
Remove comments from flake8 extend-ignore
2 parents 6142387 + e503180 commit f8b1a20

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.flake8

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,20 @@ max-line-length = 100
4040
extend-ignore =
4141
E203,
4242
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)
43+
F401,
44+
F821,
45+
F841,
4646
H,
47-
# Temporary disabled during initial adoption:
4847
D103,
4948
D104,
5049
D200,
5150
D205,
5251
D400,
5352
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
53+
S101,
54+
S404,
55+
S602,
56+
S603,
5857

5958
# Allow certain violations in certain files:
6059
per-file-ignores =

0 commit comments

Comments
 (0)