Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
chore(jshint): move JSHint configuration to a .jshintrc file
Browse files Browse the repository at this point in the history
Closes #1613
  • Loading branch information
mvhecke authored and pkozlowski-opensource committed Jan 18, 2014
1 parent 06bd92d commit a33bac9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"curly": true,
"immed": true,
"newcap": true,
"noarg": true,
"sub": true,
"boss": true,
"eqnull": true,
"quotmark": "single",
"globals": {
"angular": true
}
}
12 changes: 1 addition & 11 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,7 @@ module.exports = function(grunt) {
jshint: {
files: ['Gruntfile.js','src/**/*.js'],
options: {
curly: true,
immed: true,
newcap: true,
noarg: true,
sub: true,
boss: true,
eqnull: true,
quotmark: 'single',
globals: {
angular: true
}
jshintrc: '.jshintrc'
}
},
karma: {
Expand Down

0 comments on commit a33bac9

Please sign in to comment.