From fec2f148abe1b33ade52e29ef68b2815822ec40d Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Tue, 3 Jul 2018 10:54:50 -0400 Subject: [PATCH] Also exclude node_modules from code analysis --- script/cibuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/script/cibuild b/script/cibuild index bf5f51ee..c9fd2975 100755 --- a/script/cibuild +++ b/script/cibuild @@ -11,5 +11,6 @@ cd "$(dirname "${0}")/.." # Run lint/style checks and unit tests script/test -# Run static code analysis security check (exluding the tests subdir) -bandit -r . -x tests +# Run static code analysis security checks +# (excluding the tests and node_modules subdirs) +bandit -r . -x node_modules,tests