Point Gruntfile to external .jshintrc

This commit is contained in:
dceejay
2015-04-16 11:56:30 +01:00
parent bb9d67f1ae
commit 88ae31a6b8
2 changed files with 14 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
"immed": true, // require immediate functions to be wrapped in ( )
"nonbsp": true, // warn on unexpected whitespace breaking chars
//"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually
"unused": true, // Check for unused functions and variables
//"unused": true, // Check for unused functions and variables
"loopfunc": true, // allow functions to be defined in loops
//"expr": true, // allow ternery operator syntax...
"sub": true // don't warn that foo['bar'] should be written as foo.bar