1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2017-07-14 15:34:05 -04:00
parent cf850838b5
commit e4baa19232
24 changed files with 94 additions and 83 deletions

View File

@@ -23,7 +23,16 @@ paths.cssDir = paths.popupDir + 'css/';
paths.webfontsDir = './src/webfonts/';
gulp.task('lint', function () {
return gulp.src(paths.popupDir + 'app/**/*.js')
return gulp.src([
paths.popupDir + '**/*.js',
'./src/services/**/*.js',
'./src/notification/**/*.js',
'./src/models/**/*.js',
'./src/scripts/**/*.js',
//'./src/content/**/*.js',
'./src/overlay/**/*.js',
'./src/background.js'
])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});