mirror of https://gitee.com/antv-l7/antv-l7
46 lines
617 B
Plaintext
Executable File
46 lines
617 B
Plaintext
Executable File
{
|
|
"extends": [
|
|
"eslint-config-egg"
|
|
],
|
|
"globals": {
|
|
"AMap": true,
|
|
"L7": true,
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"html"
|
|
],
|
|
"rules": {
|
|
"no-console": [
|
|
"error",
|
|
{
|
|
"allow": [
|
|
"warn",
|
|
"error"
|
|
]
|
|
}
|
|
],
|
|
"no-bitwise": [
|
|
0
|
|
],
|
|
"experimentalDecorators": [
|
|
0
|
|
],
|
|
"comma-dangle": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"jsdoc/require-param": 0,
|
|
"linebreak-style": [
|
|
0
|
|
]
|
|
}
|
|
}
|