From d35e20570d098f5d2ae9b25044b91995fddddeee Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Sun, 7 Nov 2021 13:01:57 -0800 Subject: [PATCH] Exclude `.venv` when linting --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 38e18bfe..a65ae0bb 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -115,7 +115,7 @@ function extras(cb) { * @param cb */ function lint(cb) { - var command = ['run', 'flake8', '--exclude=etc,migrations,manage.py,node_modules,settings']; + var command = ['run', 'flake8', '--exclude=.venv,etc,migrations,manage.py,node_modules,settings']; command = command.concat(process.argv.splice(3)); spawn('pipenv', command, { stdio: 'inherit' }).on('exit', function (code) { if (code) process.exit(code);