mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-29 18:48:50 +08:00
bfb9e3a56f
* fix: repeated cleaning dom * fix: OOM * fix build * fix lint * remove the event handler * remove handler after element was deleted --------- Co-authored-by: James Yeung <shunjiey@hotmail.com>
25 lines
515 B
Plaintext
25 lines
515 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"ignoreComments": true,
|
|
"SwitchCase": 1,
|
|
"flatTernaryExpressions": false,
|
|
"offsetTernaryExpressions": false
|
|
}
|
|
]
|
|
}
|
|
} |