Skip to content

Commit 1013327

Browse files
committed
Added Flake cfg.
1 parent 2afaaae commit 1013327

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.flake8

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)