Adds .jshintrc files for: grunt (default set), src, tests; Adapts jQuery-UI loading method

This commit is contained in:
Rick Waldron
2012-06-25 10:49:21 -04:00
parent c436ae04de
commit 96246332f7
4 changed files with 114 additions and 60 deletions

27
src/.jshintrc Normal file
View File

@@ -0,0 +1,27 @@
{
"options": {
"evil": true,
"browser": true,
"wsh": true,
"eqnull": true,
"expr": true,
"curly": true,
"trailing": true,
"undef": true,
"smarttabs": true,
"maxerr": 100
},
"globals": {
"define": true,
"DOMParser": true,
"__dirname": true,
"jQuery": true,
"global": true,
"module": true,
"exports": true,
"require": true,
"file": true,
"log": true,
"console": true
}
}