Skip to content

Commit

Permalink
added jshint ignore but not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yves Richard committed Oct 8, 2014
1 parent 444e663 commit 6e2e241
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions Gruntfile.js
Expand Up @@ -125,19 +125,24 @@ module.exports = function (grunt) {
jshint: {
options: {
jshintrc: '<%= yeoman.client %>/.jshintrc',
reporter: require('jshint-stylish')
verbose: true
},
server: {
options: {
jshintrc: 'server/.jshintrc'
},
src: [ 'server/{,*/}*.js']
},
all: [
'<%= yeoman.client %>/{app,components}/**/*.js',
'!<%= yeoman.client %>/{app,components}/**/*.spec.js',
'!<%= yeoman.client %>/{app,components}/**/*.mock.js'
],
all: {
options: {
'-W106': true
},
src: [
'<%= yeoman.client %>/{app,components}/**/*.js',
'!<%= yeoman.client %>/{app,components}/**/*.spec.js',
'!<%= yeoman.client %>/{app,components}/**/*.mock.js'
]
},
test: {
src: [
'<%= yeoman.client %>/{app,components}/**/*.spec.js',
Expand Down

0 comments on commit 6e2e241

Please sign in to comment.