Skip to content

Commit f4e590f

Browse files
committed
fix(grunt): exclude constant file from jshint:all
1 parent 6c4e926 commit f4e590f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/Gruntfile(grunt).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ module.exports = function (grunt) {
161161
},
162162
src: ['<%%= yeoman.server %>/**/*.{spec,integration}.js']
163163
},
164-
all: ['<%%= yeoman.client %>/{app,components}/**/!(*.spec|*.mock).js'],
164+
all: ['<%%= yeoman.client %>/{app,components}/**/!(*.spec|*.mock|app.constant).js'],
165165
test: {
166166
src: ['<%%= yeoman.client %>/{app,components}/**/*.{spec,mock}.js']
167167
}

0 commit comments

Comments
 (0)