2016-05-10 09:06:37 +00:00
|
|
|
{
|
2016-11-02 23:51:34 +00:00
|
|
|
"root": true,
|
|
|
|
|
|
|
|
"extends": "../.eslintrc-browser.json",
|
|
|
|
|
2016-05-10 09:12:28 +00:00
|
|
|
"env": {
|
2016-11-02 23:51:34 +00:00
|
|
|
|
|
|
|
// In source the browser env is not enabled but unit tests rely on them
|
|
|
|
// too much and we don't run them in non-browser environments anyway.
|
2016-05-10 09:12:28 +00:00
|
|
|
"browser": true
|
|
|
|
},
|
2016-11-02 23:51:34 +00:00
|
|
|
|
2016-05-10 09:12:28 +00:00
|
|
|
"globals": {
|
|
|
|
"require": false,
|
|
|
|
"define": false,
|
|
|
|
"DOMParser": false,
|
|
|
|
"JSON": false,
|
|
|
|
"Promise": false,
|
|
|
|
"Symbol": false,
|
|
|
|
"QUnit": false,
|
|
|
|
"ajaxTest": false,
|
|
|
|
"testIframe": false,
|
|
|
|
"testIframeWithCallback": false,
|
|
|
|
"iframeCallback": true,
|
|
|
|
"createDashboardXML": false,
|
|
|
|
"createXMLFragment": false,
|
|
|
|
"moduleTeardown": false,
|
|
|
|
"testFoo": false,
|
|
|
|
"url": false,
|
|
|
|
"t": false,
|
|
|
|
"q": false,
|
|
|
|
"jQuery": true,
|
|
|
|
"sinon": true,
|
|
|
|
"amdDefined": true,
|
|
|
|
"fireNative": true,
|
|
|
|
"Globals": true,
|
|
|
|
"hasPHP": true,
|
|
|
|
"isLocal": true,
|
|
|
|
"supportjQuery": true,
|
|
|
|
"originaljQuery": true,
|
|
|
|
"$": true,
|
|
|
|
"original$": true,
|
|
|
|
"baseURL": true,
|
|
|
|
"externalHost": true
|
|
|
|
},
|
2016-11-02 23:51:34 +00:00
|
|
|
|
2016-05-10 09:12:28 +00:00
|
|
|
"rules": {
|
|
|
|
// See https://github.com/eslint/eslint/issues/2342
|
|
|
|
"no-unused-vars": "off",
|
2016-05-10 09:06:37 +00:00
|
|
|
|
2016-11-02 23:51:34 +00:00
|
|
|
// Too many errors
|
2016-05-10 09:12:28 +00:00
|
|
|
"max-len": "off",
|
|
|
|
"brace-style": "off",
|
|
|
|
"key-spacing": "off",
|
|
|
|
"camelcase": "off",
|
2016-11-02 23:51:34 +00:00
|
|
|
"strict": "off",
|
2016-05-10 09:06:37 +00:00
|
|
|
|
2016-11-02 23:51:34 +00:00
|
|
|
// Not really too many - waiting for autofix features for these rules
|
2016-05-10 09:12:28 +00:00
|
|
|
"lines-around-comment": "off",
|
|
|
|
"dot-notation": "off"
|
|
|
|
}
|
2016-05-10 09:06:37 +00:00
|
|
|
}
|