diff --git a/gulpfile.js b/gulpfile.js index cb27a659..c31ed98b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -21,7 +21,13 @@ gulp.task('jshint', function () { }) gulp.task('jsonlint', function () { - return gulp.src(['.jshintrc', '.bowerrc', '.yo-rc.json', '*.json']) + return gulp.src([ + '.jshintrc' + , 'res/.jshintrc' + , '.bowerrc' + , '.yo-rc.json' + , '*.json' + ]) .pipe(jsonlint()) .pipe(jsonlint.reporter()) })