-
Notifications
You must be signed in to change notification settings - Fork 24
/
.flake8
36 lines (36 loc) · 858 Bytes
/
.flake8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[flake8]
ignore =
# visually indented line with same indent as next logical line
E129,
# missing whitespace before ':'
E203,
# multiple spaces before operator
E221,
# missing whitespace after ','
E231,
# too many leading '#' for block comment
E266,
# multiple spaces after keyword
E271,
# multiple spaces before keyword
E272,
# line too long
E501,
# expected 2 blank lines
E302,
# too many blank lines
E303,
# expected 2 blank lines after class or function definition
E305,
# multiple spaces after ','
E241,
# multiple statements on one line (colon)
E701,
# multiple statements on one line (def)
E704,
# line break before binary operator
W503,
# line break after binary operator
W504,
# invalid escape sequence '\ '
W605,