Skip to content

Commit

Permalink
chore: run eslint on JS files at the root of the directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Aug 21, 2017
1 parent 9294565 commit edf4edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* SOFTWARE.
*/

const fs = require('fs');
const path = require('path');
const gulp = require('gulp');
const jasmine = require('gulp-jasmine');
Expand Down Expand Up @@ -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'),
];
Expand Down

0 comments on commit edf4edb

Please sign in to comment.