Skip to content

Commit

Permalink
Fix missing ESLint config
Browse files Browse the repository at this point in the history
  • Loading branch information
mischah committed Mar 22, 2017
1 parent 10b30b6 commit a2dec75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ const istanbul = require('gulp-istanbul');
const nsp = require('gulp-nsp');
const plumber = require('gulp-plumber');
const coveralls = require('gulp-coveralls');
const eslintConfig = require('./.eslintrc.json');

gulp.task('static', () => {
return gulp.src('**/*.js')
.pipe(excludeGitignore())
.pipe(eslint())
.pipe(eslint({baseConfig: eslintConfig}))
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
Expand Down

0 comments on commit a2dec75

Please sign in to comment.