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

Commit

Permalink
chore(jshint): add more rules
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Dec 8, 2014
1 parent 7cc0d80 commit f60eec8
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
{
"boss": true,
"browser": true,
"eqnull": true,
"expr": true,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"freeze": true,
"globalstrict": true,
"immed": true,
"laxbreak": true,
"loopfunc": true,
"latedef": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"quotmark": true,
"smarttabs": true,
"sub": true,
"trailing": true,
"quotmark": "single",
"undef": true,
"unused": true,
"maxdepth": 4,
"maxcomplexity": 8,

"eqnull": false,
"esnext": true,

"browser": true,
"jasmine": true,
"validthis": true,

"globals": {
"angular": false
"angular": true
}
}

0 comments on commit f60eec8

Please sign in to comment.