Exclude node_modules directory from flake8 target

Change-Id: I5927e3a5bdc6d4bd9e3f0649fa86a243d23c3178
This commit is contained in:
Shu Muto 2017-06-19 14:47:39 +09:00
parent ea685c4c92
commit aefbe4e6f6

View File

@ -40,7 +40,7 @@ commands = python setup.py build_sphinx
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]
exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject
exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject,node_modules
max-complexity = 20
[hacking]