-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
50 lines (48 loc) · 1.39 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
49
50
[flake8]
exclude = tests/support,tests/Python26SocketServer.py,sites,fabric/api.py
max-line-length = 164
ignore =
# continuation line under-indented for hanging indent
E121,
# continuation line missing indentation or outdented
E122,
# closing bracket does not match indentation of opening bracket's line
E123
# closing bracket does not match visual indentation
E124,
# continuation line with same indent as next logical line
E125,
# continuation line over-indented for hanging indent
E126,
# continuation line over-indented for visual indent
E127,
# continuation line under-indented for visual indent
E128,
# multiple spaces before operator
E221,
# missing whitespace after ':'
E231,
# at least two spaces before inline comment
E261,
# block comment should start with '# '
E265,
# too many leading '#' for block comment
E266,
# expected 2 blank lines, found 1
E302,
# too many blank lines
E303,
# expected 1 blank line before a nested definition, found 0
E306,
# expected 2 blank lines after class or function definition, found 1
E305,
# the backslash is redundant between brackets
E502,
# line break before binary operator
W503,
# multiple statements on one line
E704,
# do not assign a lambda expression, use a def
E731,
[metadata]
license_file = LICENSE