File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ [flake8]
2
+ extend-ignore =
3
+ E124,
4
+ ; closing bracket does not match visual indentation
5
+ E127,
6
+ ; continuation line over-indented for visual indent
7
+ E128,
8
+ ; continuation line under-indented for visual indent
9
+ E221,
10
+ ; multiple spaces before operator
11
+ E225,
12
+ ; missing whitespace around operator
13
+ E231,
14
+ ; missing whitespace after ',' and ':'
15
+ E252,
16
+ ; missing whitespace around parameter equal
17
+ E261,
18
+ ; at least two spaces before inline comment
19
+ E265,
20
+ ; block comment should start with '# '
21
+ E272,
22
+ ; multiple spaces before keyword
23
+ E303,
24
+ ; too many blank lines
25
+ E501,
26
+ ; line too long
27
+ W291,
28
+ ; trailing whitespace
29
+ W605,
30
+ ; invalid escape sequence
31
+
32
+ per-file-ignores = __init__.py:F401
You can’t perform that action at this time.
0 commit comments