2017-10-14 07:39:22 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": false
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-const-assign": "warn",
|
|
|
|
"no-this-before-super": "warn",
|
|
|
|
"no-undef": "warn",
|
|
|
|
"no-unreachable": "warn",
|
|
|
|
"no-unused-vars": "warn",
|
|
|
|
"constructor-super": "warn",
|
|
|
|
"valid-typeof": "warn"
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"$": true,
|
2018-08-13 10:34:00 +00:00
|
|
|
"addHook": true,
|
|
|
|
"runHook": true,
|
|
|
|
"addInitHook": true,
|
|
|
|
"runInitHook": true,
|
|
|
|
"loadScript": true
|
2017-10-14 07:39:22 +00:00
|
|
|
}
|
|
|
|
}
|