From aefbe4e6f6dadf74363107d7d20a150e24a6e0df Mon Sep 17 00:00:00 2001 From: Shu Muto Date: Mon, 19 Jun 2017 14:47:39 +0900 Subject: [PATCH] Exclude node_modules directory from flake8 target Change-Id: I5927e3a5bdc6d4bd9e3f0649fa86a243d23c3178 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index b3467b5..9c76974 100644 --- a/tox.ini +++ b/tox.ini @@ -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]