Skip to content

Commit

Permalink
Update gruntFile.js
Browse files Browse the repository at this point in the history
Fix the grunt filename in jshint.
  • Loading branch information
rgaskill authored and petebacondarwin committed Apr 9, 2013
1 parent 645d621 commit ef257e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/gruntFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ module.exports = function (grunt) {
}
},
jshint:{
files:['grunt.js', '<%= src.js %>', '<%= src.specs %>', '<%= src.scenarios %>'],
files:['gruntFile.js', '<%= src.js %>', '<%= src.specs %>', '<%= src.scenarios %>'],
options:{
curly:true,
eqeqeq:true,
Expand All @@ -178,4 +178,4 @@ module.exports = function (grunt) {
}
});

};
};

0 comments on commit ef257e3

Please sign in to comment.