2018-11-12 23:06:25 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
|
|
|
"greasemonkey": true,
|
|
|
|
"jquery": true
|
|
|
|
},
|
|
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
|
2020-02-14 17:36:25 +00:00
|
|
|
"globals": {
|
2020-03-14 00:33:36 +00:00
|
|
|
"LOGGER": true,
|
|
|
|
"MBImportStyle": true,
|
|
|
|
"MBImport": true,
|
|
|
|
"MBLinks": true,
|
|
|
|
"MBSearchItStyle": true
|
2020-02-14 17:36:25 +00:00
|
|
|
},
|
2018-11-12 23:06:25 +00:00
|
|
|
"rules": {
|
|
|
|
"prettier/prettier": "error",
|
|
|
|
"prefer-template": "error",
|
|
|
|
"no-console": "off",
|
|
|
|
"no-inner-declarations": "warn",
|
|
|
|
"no-global-assign": "warn",
|
|
|
|
"no-redeclare": "warn",
|
|
|
|
"no-self-assign": "warn",
|
|
|
|
"no-undef": "warn",
|
|
|
|
"no-useless-concat": "warn",
|
|
|
|
"no-useless-escape": "warn",
|
|
|
|
"no-unused-vars": "warn",
|
2018-11-20 22:37:47 +00:00
|
|
|
"no-var": "warn"
|
2018-11-12 23:06:25 +00:00
|
|
|
}
|
|
|
|
}
|