forked from rembo10/headphones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pep8
15 lines (15 loc) · 746 Bytes
/
.pep8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[pep8]
# E121 continuation line under-indented for hanging indent
# E122 continuation line missing indentation or outdented
# E124 closing bracket does not match visual indentation
# E125 continuation line with same indent as next logical line
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# E261 at least two spaces before inline comment
# E262 inline comment should start with '# '
# E265 block comment should start with '# '
# E501 line too long (312 > 160 characters)
# E502 the backslash is redundant between brackets
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E261,E262,E265,E501,E502
max-line-length = 160