mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
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:
parent
f70caa04cc
commit
aafa7ae3d9
1 changed files with 16 additions and 0 deletions
16
setup.cfg
16
setup.cfg
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue