mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 02:15:24 +00:00
28 lines
676 B
JSON
28 lines
676 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 7,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"node/exports-style": ["error", "module.exports"],
|
|
"semi": 2,
|
|
"no-console": 0,
|
|
"no-process-exit": 0,
|
|
"node/no-unpublished-require": 0,
|
|
"node/no-unsupported-features": 0,
|
|
"no-extra-boolean-cast": 0,
|
|
"no-cond-assign": 0
|
|
},
|
|
"plugins": ["node", "async-await"],
|
|
"extends": ["eslint:recommended", "plugin:node/recommended"]
|
|
}
|