Skip to content

Commit 2744a7e

Browse files
author
Torstein Krause Johansen
committed
Added reasons to why I've disabled some PEP8 checks
1 parent b8680c3 commit 2744a7e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

python/.flake8rc

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[flake8]
22

3-
# E111 indention must be 4 spaces
4-
# E114 indention must be 4 spaces for comments
5-
# E121 continuation line under-indented for hanging indent
6-
# E266 too many leading ‘#’ for block comment
7-
ignore = E111, E114, E121, E266
3+
# E111 indention must be 4 spaces (I like 2 space indent)
4+
# E114 indention must be 4 spaces for comments (I like 2 space indent)
5+
# E121 continuation line under-indented for hanging indent (problem with indent=2)
6+
# E125 continuation line with same indent as next logical line (problem with indent=2)
7+
# E266 too many leading ‘#’ for block comment (I like double #s)
8+
ignore = E111, E114, E121, E125, E266

0 commit comments

Comments
 (0)