Ignore node_modules in pep8

This patch excludes "node_modules" directory from pep8.

Change-Id: I6b04a9ddc66d07831c77f901dde5a1b69d746ca0
This commit is contained in:
Shu Muto 2016-09-20 15:07:21 +09:00
parent e88196a6fd
commit 45e42b7c8d
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ setenv = DJANGO_SETTINGS_MODULE=magnum_ui.test.settings
commands = python setup.py build_sphinx
[flake8]
exclude = .venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject
exclude = .venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject,node_modules
max-complexity = 20
[hacking]