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