-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.cfg
48 lines (48 loc) · 1.02 KB
/
setup.cfg
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
37
38
39
40
41
42
43
44
45
46
47
48
[flake8]
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
doctests = True
ignore =
# closing bracket does not match indentation of opening bracket's line
E123,
# continuation line over-indented for hanging indent
E126,
# continuation line under-indented for visual indent
E128,
# visually indented line with same indent as next logical line
E129,
# whitespace after '('
E201,
# whitespace before ')'
E202,
# missing whitespace around arithmetic operator
E226,
# missing whitespace after ':'
E231,
# multiple spaces after ','
E241,
# unexpected spaces around keyword / parameter equals
E251,
# at least two spaces before inline comment
E261,
# multiple spaces before keyword
E272,
# expected 2 blank lines
E302,
# line too long
E501,
# statement ends with a semicolon
E703,
# ambiguous variable name
E741,
# undefined name (typically '_')
F821,
# trailing whitespace
W291
# blank line contains whitespace
W293
# blank line at end of file
W391
# line break before binary operator
W503,
# invalid escape sequence '\d'
W605