Skip to content

Commit

Permalink
fix spacing in gulp lint command (#3418)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnellbaker authored Jan 4, 2019
1 parent 460a1e2 commit b5041ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ function lint(done) {
if (argv.nolint) {
return done();
}
const isFixed = function(file){
const isFixed = function(file) {
return file.eslint != null && file.eslint.fixed;
}
return gulp.src(['src/**/*.js', 'modules/**/*.js', 'test/**/*.js'],{base: './'})
return gulp.src(['src/**/*.js', 'modules/**/*.js', 'test/**/*.js'], {base: './'})
.pipe(eslint({fix: true}))
.pipe(eslint.format('stylish'))
.pipe(eslint.failAfterError())
Expand Down

0 comments on commit b5041ac

Please sign in to comment.