19 lines
305 B
JavaScript
19 lines
305 B
JavaScript
|
module.exports = {
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"commonjs": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
// "eslint:recommended",
|
||
|
"plugin:promise/recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 5
|
||
|
},
|
||
|
"plugins": [
|
||
|
"promise"
|
||
|
],
|
||
|
};
|
||
|
|