Steve Piercy
2016-11-29 968bebc0d1cbb6d85eb446b41c0f4560383c3022
commit | author | age
612d74 1 [easy_install]
5b2abc 2 zip_ok = false
b07cfe 3
CM 4 [nosetests]
5 match=^test
b60bdb 6 where=pyramid
b07cfe 7 nocapture=1
CM 8
a3744b 9 [aliases]
CM 10 dev = develop easy_install pyramid[testing]
aca78f 11 docs = develop easy_install pyramid[docs]
011757 12
CM 13 [bdist_wheel]
14 universal = 1
15
25c64c 16 [flake8]
3a21f7 17 ignore =
TS 18     # E121: continuation line under-indented for hanging indent
19     E121,
20     # E123: closing bracket does not match indentation of opening bracket's line
21     E123,
22     # E125: continuation line with same indent as next logical line
23     E125,
24     # E127: continuation line over-indented for visual indent
25     E127,
26     # E128: continuation line under-indented for visual indent
27     E128,
28     # E129: visually indented line with same indent as next logical line
29     E129,
3c96b5 30     # E201: whitespace after '('
3a21f7 31     E201,
3c96b5 32     # E202: whitespace before ')'
3a21f7 33     E202,
3c96b5 34     # E231: missing whitespace after ',', ';', or ':'
3a21f7 35     E231,
TS 36     # E261: at least two spaces before inline comment
37     E261,
3c96b5 38     # E262: inline comment should start with '# '
3a21f7 39     E262,
3c96b5 40     # E265: block comment should start with '# '
3a21f7 41     E265,
3c96b5 42     # E266: too many leading '#' for block comment
3a21f7 43     E266,
TS 44     # E301: expected 1 blank line, found 0
45     E301,
46     # E302: expected 2 blank lines, found 0
47     E302,
48     # E303: too many blank lines (3)
49     E303,
65e303 50     # E305: expected 2 blank lines after class or function definition, found 1
TS 51     E305,
52     # E306: expected 1 blank line before a nested definition, found 0
53     E306,
3a21f7 54     # E501: line too long (82 > 79 characters)
TS 55     E501,
56     # E731: do not assign a lambda expression, use a def
57     E731,
58     # W291: trailing whitespace
59     W291,
60     # W293: blank line contains whitespace
61     W293,
62     # W391: blank line at end of file
63     W391
25c64c 64 exclude = pyramid/tests/,pyramid/compat.py,pyramid/resource.py
JA 65 show-source = True