Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Commit 81ced40

Browse files
committed
un-inlined comments in flake8 config
1 parent 312cd04 commit 81ced40

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

setup.cfg

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,16 @@ exclude =
3333

3434
[flake8]
3535
ignore =
36-
E203 # whitespace before ':' - doesn't work well with black
37-
E402 # module level import not at top of file
38-
E501 # line too long - let black worry about that
39-
E731 # do not assign a lambda expression, use a def
40-
W503 # line break before binary operator
36+
# whitespace before ':' - doesn't work well with black
37+
E203
38+
# module level import not at top of file
39+
E402
40+
# line too long - let black worry about that
41+
E501
42+
# do not assign a lambda expression, use a def
43+
E731
44+
# line break before binary operator
45+
W503
4146
exclude=
4247
.eggs
4348
doc

0 commit comments

Comments
 (0)