Mercurial > moin > 2.0
changeset 2012:a2fdd71ecfe6
setup.cfg: more strict pep8 settings
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Mon, 18 Feb 2013 00:47:44 +0100 |
parents | 791bdedb0c20 |
children | b42189a8dbba |
files | setup.cfg |
diffstat | 1 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.cfg Mon Feb 18 00:46:53 2013 +0100 +++ b/setup.cfg Mon Feb 18 00:47:44 2013 +0100 @@ -46,12 +46,13 @@ norecursedirs = .hg _build tmp* env* dlc wiki minversion = 2.0 pep8ignore = - *.py E121 E122 E123 E124 E125 E126 E127 E128 # continuation line indentation + *.py E124 # closing bracket does not match visual indentation (behaves strange!?) + *.py E125 # continuation line does not distinguish itself from next logical line (difficult to avoid!) *.py E501 # maximum line length (see also pep8maxlinelength) + MoinMoin/config/default.py E501 # maximum line length (long lines expected there) + MoinMoin/constants/chartypes.py E501 # auto-generated, long lines + MoinMoin/util/_tests/test_paramparser.py E241 # whitespace around comma (we have some "tabular" formatting there) wikiconfig_*.py ALL # local stuff, not in the repo - MoinMoin/config/default.py E501 # maximum line length (long lines expected there) - MoinMoin/util/_tests/test_paramparser.py E241 # whitespace around comma (we have some "tabular" formatting there) - MoinMoin/constants/chartypes.py E501 # auto-generated, long lines MoinMoin/script/migration/moin19/_logfile19.py ALL # legacy code "as is" MoinMoin/script/migration/moin19/_utils19.py ALL # legacy code "as is" docs/conf.py ALL # sphinx stuff, automatically generated, don't check this