mirror of https://github.com/snachodog/mybuddy.git
Make sure flake8 exits with an error status if linting does not pass.
This commit is contained in:
parent
d943b54614
commit
8dea1f5b5b
|
@ -86,7 +86,10 @@ gulp.task('watch', watch);
|
||||||
function lint(cb) {
|
function lint(cb) {
|
||||||
var command = ['run', 'flake8', '--exclude=etc,migrations,manage.py,node_modules,settings'];
|
var command = ['run', 'flake8', '--exclude=etc,migrations,manage.py,node_modules,settings'];
|
||||||
command = command.concat(process.argv.splice(3));
|
command = command.concat(process.argv.splice(3));
|
||||||
spawn('pipenv', command, { stdio: 'inherit' }).on('exit', cb);
|
spawn('pipenv', command, { stdio: 'inherit' }).on('exit', function (code) {
|
||||||
|
if (code) process.exit(code);
|
||||||
|
cb();
|
||||||
|
});
|
||||||
|
|
||||||
pump([
|
pump([
|
||||||
gulp.src(config.watchConfig.stylesGlob),
|
gulp.src(config.watchConfig.stylesGlob),
|
||||||
|
|
Loading…
Reference in New Issue