forked from theOpetunde2/pyramid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (61 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[easy_install]
zip_ok = false
[nosetests]
match=^test
where=pyramid
nocapture=1
[aliases]
dev = develop easy_install pyramid[testing]
docs = develop easy_install pyramid[docs]
[bdist_wheel]
universal = 1
[flake8]
ignore =
# E121: continuation line under-indented for hanging indent
E121,
# E123: closing bracket does not match indentation of opening bracket's line
E123,
# E125: continuation line with same indent as next logical line
E125,
# E127: continuation line over-indented for visual indent
E127,
# E128: continuation line under-indented for visual indent
E128,
# E129: visually indented line with same indent as next logical line
E129,
# E201: whitespace after '('
E201,
# E202: whitespace before ')'
E202,
# E231: missing whitespace after ',', ';', or ':'
E231,
# E261: at least two spaces before inline comment
E261,
# E262: inline comment should start with '# '
E262,
# E265: block comment should start with '# '
E265,
# E266: too many leading '#' for block comment
E266,
# E301: expected 1 blank line, found 0
E301,
# E302: expected 2 blank lines, found 0
E302,
# E303: too many blank lines (3)
E303,
# E305: expected 2 blank lines after class or function definition, found 1
E305,
# E306: expected 1 blank line before a nested definition, found 0
E306,
# E501: line too long (82 > 79 characters)
E501,
# E731: do not assign a lambda expression, use a def
E731,
# W291: trailing whitespace
W291,
# W293: blank line contains whitespace
W293,
# W391: blank line at end of file
W391
exclude = pyramid/tests/,pyramid/compat.py,pyramid/resource.py
show-source = True