You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
503 B
28 lines
503 B
{
|
|
"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]
|
|
}
|
|
}
|
|
|