mirror of
https://github.com/NetEase/tango.git
synced 2026-08-29 02:01:34 +08:00
14 lines
433 B
Plaintext
14 lines
433 B
Plaintext
{
|
|
"extends": ["eslint-config-ali/typescript/react", "prettier"],
|
|
"ignorePatterns": ["**/dist/**/*", "**/lib/**/*", "**/node_modules/**/*", "scripts/**/*"],
|
|
"rules": {
|
|
"@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"
|
|
}
|
|
}
|