2017-10-27 07:03:53 +00:00
|
|
|
{
|
2019-06-27 15:00:33 +00:00
|
|
|
"env": {
|
|
|
|
"node": true,
|
|
|
|
"es6": true,
|
|
|
|
"mocha": true,
|
|
|
|
"jquery": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 7,
|
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"XPACK_RBAC_ENABLED": true
|
|
|
|
},
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"rules": {
|
|
|
|
"node/exports-style": ["error", "module.exports"],
|
|
|
|
"no-console": "warn",
|
|
|
|
"semi": "off",
|
|
|
|
"no-process-exit": "error",
|
|
|
|
"no-extra-boolean-cast": "off",
|
|
|
|
"node/no-unpublished-require": 0,
|
|
|
|
"node/no-unsupported-features": 0,
|
|
|
|
"node/no-unsupported-features/es-syntax": 0
|
|
|
|
},
|
|
|
|
"plugins": ["node", "async-await"],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:node/recommended",
|
|
|
|
"plugin:react/recommended"
|
|
|
|
]
|
2018-04-22 18:52:55 +00:00
|
|
|
}
|