Update flake8 ignores

This commit is contained in:
Florian Bruhin 2014-04-22 18:00:38 +02:00
parent 51489ab538
commit 11bd966e1e

10
.flake8
View File

@ -1,9 +1,11 @@
[flake8] [flake8]
# E241: Multiple spaces after , # E241: Multiple spaces after ,
# E265: Block comment should start with '#' # E265: Block comment should start with '#'
# F401: Unused import (checked by pylint) # checked by pylint:
# E501: Line too long (checked by pylint) # F401: Unused import
# F821: undefined name (checked by pylint) # E501: Line too long
ignore=E241,E265,F401,E501,F821 # F821: undefined name
# F841: unused variable
ignore=E241,E265,F401,E501,F821,F841
max_complexity = 10 max_complexity = 10
exclude = appdirs.py exclude = appdirs.py