Make compatible with jshint, lint test/data. Close gh-1043.

This commit is contained in:
Timo Tijhof
2012-11-25 20:30:16 +01:00
committed by Richard Gibson
parent 26bf8dd56b
commit 5dd8a90f73
8 changed files with 111 additions and 118 deletions

View File

@@ -1,32 +1,24 @@
{
"options": {
"browser": true,
"curly": true,
"eqnull": true,
"evil": true,
"expr": true,
"maxerr": 100,
"newcap": false,
"quotmark": "double",
"regexdash": true,
"strict": true,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"wsh": true
},
"globals": {
"define": true,
"DOMParser": true,
"__dirname": true,
"jQuery": true,
"global": true,
"module": true,
"exports": true,
"require": true,
"file": true,
"log": true,
"console": true
}
"curly": true,
"expr": true,
"newcap": false,
"quotmark": "double",
"regexdash": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"maxerr": 100,
"eqnull": true,
"evil": true,
"sub": true,
"browser": true,
"wsh": true,
"predef": [
"define",
"jQuery"
]
}