mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
be3dcbfc4c
* chore: update ESLint * chore: update eslint ignore
21 lines
345 B
Plaintext
21 lines
345 B
Plaintext
{
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"expect": true,
|
|
"sinon": true
|
|
},
|
|
"plugins": ["html", "json"],
|
|
"extends": "elemefe",
|
|
"rules": {
|
|
"no-restricted-globals": ["error", "event", "fdescribe"]
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true,
|
|
"jsx": true
|
|
}
|
|
}
|
|
}
|