mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 18:28:19 +08:00
44 lines
551 B
Plaintext
44 lines
551 B
Plaintext
{
|
|
"extends": [
|
|
"egg"
|
|
],
|
|
"globals": {
|
|
"$": true,
|
|
"_": 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"
|
|
],
|
|
"linebreak-style": [
|
|
0
|
|
],
|
|
"no-loop-func": [
|
|
0
|
|
]
|
|
}
|
|
}
|