29 lines
503 B
Plaintext
29 lines
503 B
Plaintext
{
|
|
"extends": ["egg"],
|
|
"globals": {
|
|
"$": true,
|
|
"DataSet": true,
|
|
"Hierarchy": true,
|
|
"G2": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["html"],
|
|
"rules": {
|
|
"no-bitwise": [0],
|
|
"experimentalDecorators": [0],
|
|
"comma-dangle": ["error", "never"],
|
|
"no-console": [
|
|
"error",
|
|
{
|
|
"allow": ["warn", "error"]
|
|
}
|
|
],
|
|
"linebreak-style": [0],
|
|
"quotes": [0],
|
|
"arrow-parens": [0]
|
|
}
|
|
}
|