Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit f46487f

Browse files
committed
build(jshint): fix jshint gulp task
closes #766
1 parent 31d3c12 commit f46487f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

gulpfile.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ var config = {
5353
'src/core/**/*.js',
5454
'!src/core/**/*.spec.js'
5555
],
56+
jsFiles: [
57+
'src/core/**/*.js'
58+
],
5659
themeBaseFiles: [
5760
'src/core/style/color-palette.scss',
5861
'src/core/style/variables.scss',
@@ -117,7 +120,7 @@ gulp.task('changelog', function(done) {
117120
});
118121
gulp.task('jshint', function() {
119122
return gulp.src(
120-
buildConfig.paths.js.concat(buildConfig.paths.test)
123+
config.jsFiles
121124
)
122125
.pipe(jshint('.jshintrc'))
123126
.pipe(jshint.reporter(require('jshint-summary')({

0 commit comments

Comments
 (0)