Add jshint configuration.

This commit is contained in:
Tim Buckley 2015-09-02 15:49:18 -06:00
parent 9e0f80a439
commit cbcaa32438
1 changed files with 20 additions and 0 deletions

20
.jshintrc Normal file
View File

@ -0,0 +1,20 @@
{
"node": true,
"jasmine": true,
"browser": true,
"esnext": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"noarg": true,
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"newcap": false
}