From edf4edb7dfd20907c75ab53a51d24aa2ea100f25 Mon Sep 17 00:00:00 2001 From: Mickael Jeanroy Date: Mon, 21 Aug 2017 22:02:16 +0200 Subject: [PATCH] chore: run eslint on JS files at the root of the directory --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 001dfd75..1b17e80c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -22,7 +22,6 @@ * SOFTWARE. */ -const fs = require('fs'); const path = require('path'); const gulp = require('gulp'); const jasmine = require('gulp-jasmine'); @@ -61,6 +60,7 @@ gulp.task('build', ['clean', 'lint'], () => { gulp.task('lint', () => { const src = [ + path.join(ROOT, '*.js'), path.join(SRC, '**', '*.js'), path.join(TEST, '**', '*.js'), ];