2019-11-06 11:57:42 +08:00
|
|
|
{
|
2019-11-20 17:26:24 +08:00
|
|
|
"extends": [
|
|
|
|
"eslint-config-egg"
|
|
|
|
],
|
2019-11-06 11:57:42 +08:00
|
|
|
"globals": {
|
2019-11-20 17:26:24 +08:00
|
|
|
"AMap": true,
|
|
|
|
"L7": true,
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"html"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-bitwise": [
|
|
|
|
0
|
|
|
|
],
|
|
|
|
"experimentalDecorators": [
|
|
|
|
0
|
|
|
|
],
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
"never"
|
|
|
|
],
|
|
|
|
"jsdoc/require-param": 0,
|
|
|
|
"linebreak-style": [
|
|
|
|
0
|
2020-05-18 11:10:07 +08:00
|
|
|
],
|
|
|
|
"indent": ["error", 2, {
|
2020-05-19 11:06:01 +08:00
|
|
|
"ignoredNodes": ["TemplateLiteral"]
|
|
|
|
}]
|
2019-11-06 11:57:42 +08:00
|
|
|
}
|
|
|
|
}
|