summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-11-14 11:50:31 -0500
committerTres Seaver <tseaver@palladion.com>2016-11-14 11:50:31 -0500
commit3a21f7dfd350ea16808e7408c194328630471962 (patch)
treeb7a98683bedad402097658a5a11d533d760d4654 /setup.cfg
parentc67be02ed80bb4f304914380287998c20c65f717 (diff)
downloadpyramid-3a21f7dfd350ea16808e7408c194328630471962.tar.gz
pyramid-3a21f7dfd350ea16808e7408c194328630471962.tar.bz2
pyramid-3a21f7dfd350ea16808e7408c194328630471962.zip
Annotate skipped flake8 rules.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg44
1 files changed, 43 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index b52d24bdb..85b6dd367 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,6 +14,48 @@ docs = develop easy_install pyramid[docs]
universal = 1
[flake8]
-ignore = E301,E302,E731,E261,E123,E121,E128,E129,E125,W291,E501,W293,E303,W391,E266,E231,E201,E202,E127,E262,E265
+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,
+ # 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