mirror of
https://github.com/NetEase/tango.git
synced 2026-08-28 17:41:30 +08:00
558f2cd0a6
* fix: refactor update import declaration * fix: rename module methods * fix: update types * fix: update --------- Co-authored-by: wwsun <ww.sww@outlook.com>
15 lines
495 B
Plaintext
15 lines
495 B
Plaintext
{
|
|
"extends": ["eslint-config-ali/typescript/react", "prettier"],
|
|
"ignorePatterns": ["**/dist/**/*", "**/lib/**/*", "**/node_modules/**/*", "scripts/**/*"],
|
|
"rules": {
|
|
"@typescript-eslint/consistent-type-definitions": "off",
|
|
"@typescript-eslint/dot-notation": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"import/no-cycle": "off",
|
|
"no-nested-ternary": "off",
|
|
"no-useless-return": "off",
|
|
"no-param-reassign": "off",
|
|
"prefer-destructuring": "off"
|
|
}
|
|
}
|