Skip to content

Commit

Permalink
fix(grunt): exclude constant file from jshint:all
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed Jan 28, 2016
1 parent 6c4e926 commit f4e590f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/Gruntfile(grunt).js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ module.exports = function (grunt) {
},
src: ['<%%= yeoman.server %>/**/*.{spec,integration}.js']
},
all: ['<%%= yeoman.client %>/{app,components}/**/!(*.spec|*.mock).js'],
all: ['<%%= yeoman.client %>/{app,components}/**/!(*.spec|*.mock|app.constant).js'],
test: {
src: ['<%%= yeoman.client %>/{app,components}/**/*.{spec,mock}.js']
}
Expand Down

0 comments on commit f4e590f

Please sign in to comment.