1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00

Add res/.jshintrc to jsonlint.

This commit is contained in:
Simo Kinnunen 2014-05-13 16:26:21 +09:00
parent 0c4ae25d88
commit c1b4dc4af5

View file

@ -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())
})