Steve Piercy
2018-09-22 e22970cd21eb36c2a658c843bb5cb4f59d77fd19
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
ab4cc1 16 [metadata]
MM 17 license_file = LICENSE.txt
18
25c64c 19 [flake8]
3a21f7 20 ignore =
TS 21     # E121: continuation line under-indented for hanging indent
22     E121,
23     # E123: closing bracket does not match indentation of opening bracket's line
24     E123,
25     # E125: continuation line with same indent as next logical line
26     E125,
27     # E127: continuation line over-indented for visual indent
28     E127,
29     # E128: continuation line under-indented for visual indent
30     E128,
31     # E129: visually indented line with same indent as next logical line
32     E129,
3c96b5 33     # E201: whitespace after '('
3a21f7 34     E201,
3c96b5 35     # E202: whitespace before ')'
3a21f7 36     E202,
3c96b5 37     # E231: missing whitespace after ',', ';', or ':'
3a21f7 38     E231,
TS 39     # E261: at least two spaces before inline comment
40     E261,
3c96b5 41     # E262: inline comment should start with '# '
3a21f7 42     E262,
3c96b5 43     # E265: block comment should start with '# '
3a21f7 44     E265,
3c96b5 45     # E266: too many leading '#' for block comment
3a21f7 46     E266,
TS 47     # E301: expected 1 blank line, found 0
48     E301,
49     # E302: expected 2 blank lines, found 0
50     E302,
51     # E303: too many blank lines (3)
52     E303,
65e303 53     # E305: expected 2 blank lines after class or function definition, found 1
TS 54     E305,
55     # E306: expected 1 blank line before a nested definition, found 0
56     E306,
3a21f7 57     # E501: line too long (82 > 79 characters)
TS 58     E501,
59     # E731: do not assign a lambda expression, use a def
60     E731,
61     # W291: trailing whitespace
62     W291,
63     # W293: blank line contains whitespace
64     W293,
65     # W391: blank line at end of file
66     W391
25c64c 67 exclude = pyramid/tests/,pyramid/compat.py,pyramid/resource.py
JA 68 show-source = True