Add exceptions to ignore flake8 errors for 3.6

These should be fixed, but outside of the scope of this.
This commit is contained in:
Gil Forsyth 2018-03-12 12:09:58 -04:00
parent f70caa04cc
commit aafa7ae3d9

View file

@ -28,3 +28,19 @@ flake8-ignore =
ply/*.py ALL
# these run VERY slowly and give tons of errors
parser*_table.py ALL
# oh come on
setup.py ALL
# remove these later
*.py E741 # ambiguous variable name
xonsh/color_tools.py E305
xonsh/inspectors.py E722
xonsh/lexer.py E741
xonsh/platform.py E305
xonsh/style_tools.py E305
xonsh/tools.py E305
xonsh/winutils.py E305
xonsh/completers/_aliases.py E305
xonsh/completers/python.py E722
xonsh/parsers/context_check.py E305
xonsh/xoreutils/*.py E722 E305