ignore some more pep8 checker errors

This commit is contained in:
Thomas Waldmann 2015-02-08 19:45:01 +01:00
parent 19f0d76c2a
commit 7c273dc870

View File

@ -30,6 +30,8 @@ pep8ignore =
*.py E124 # closing bracket does not match visual indentation (behaves strange!?) *.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 E125 # continuation line does not distinguish itself from next logical line (difficult to avoid!)
*.py E129 # visually indented line with same indent as next logical line *.py E129 # visually indented line with same indent as next logical line
*.py E402 # we do not care about module level imports being at top of file
*.py E731 # we do assign lambda expressions if we like
docs/conf.py ALL # sphinx stuff, automatically generated, don't check this docs/conf.py ALL # sphinx stuff, automatically generated, don't check this
migrations/*.py ALL # autogenerated by Django migrations/*.py ALL # autogenerated by Django