antv-l7/.eslintrc

53 lines
743 B
Plaintext
Raw Normal View History

2018-10-23 19:32:42 +08:00
{
"extends": [
2019-08-07 18:10:58 +08:00
"eslint-config-egg"
2018-10-23 19:32:42 +08:00
],
"globals": {
"$": true,
"AMap": true,
"L7": true,
"AMapUI": true,
"DataSet": true,
"G2": true,
"_": true,
"mapboxgl":true,
"dat" : true,
},
"env": {
"browser": true,
"node": true
2018-10-23 19:32:42 +08:00
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"html"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
],
"no-bitwise": [
0
],
"experimentalDecorators": [
0
],
"comma-dangle": [
"error",
"never"
],
2019-08-07 19:18:36 +08:00
"jsdoc/require-param": 0,
2018-10-23 19:32:42 +08:00
"linebreak-style": [
0
]
}
}