mirror of
https://gitee.com/antv/g6.git
synced 2024-12-14 09:30:48 +08:00
41 lines
514 B
Plaintext
41 lines
514 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
|
|
]
|
|
}
|
|
}
|