Skip to content

Commit de14fd5

Browse files
author
Kevin Paul
authored
Remove comments in flake8 config
1 parent 2944ff5 commit de14fd5

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

setup.cfg

+19-18
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@
66
# Note: there cannot be spaces after comma's here
77
exclude = __init__.py,
88
ignore =
9-
E20, # Extra space in brackets
10-
E231,E241, # Multiple spaces around ","
11-
E26, # Comments
12-
E4, # Import formatting
13-
E721, # Comparing types instead of isinstance
14-
E731, # Assigning lambda expression
15-
E121, # continuation line under-indented for hanging indent
16-
E126, # continuation line over-indented for hanging indent
17-
E127, # continuation line over-indented for visual indent
18-
E128, # E128 continuation line under-indented for visual indent
19-
E702, # multiple statements on one line (semicolon)
20-
W503, # line break before binary operator
21-
E129, # visually indented line with same indent as next logical line
22-
E116, # unexpected indentation
23-
F811, # redefinition of unused 'loop' from line 10
24-
F841, # local variable is assigned to but never used
25-
E741 # Ambiguous variable names
26-
W504, # line break after binary operator
9+
E20,
10+
E231,
11+
E241,
12+
E26,
13+
E4,
14+
E721,
15+
E731,
16+
E121,
17+
E126,
18+
E127,
19+
E128,
20+
E702,
21+
W503,
22+
E129,
23+
E116,
24+
F811,
25+
F841,
26+
E741,
27+
W504
2728

2829
max-line-length = 120
2930

0 commit comments

Comments
 (0)