mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 05:30:40 +00:00
17 lines
492 B
JavaScript
17 lines
492 B
JavaScript
module.exports = {
|
|
extends: 'eslint-config-ali/typescript/react',
|
|
rules: {
|
|
'react/no-multi-comp': 0,
|
|
'no-unused-expressions': 0,
|
|
'implicit-arrow-linebreak': 0,
|
|
'no-nested-ternary': 0,
|
|
'no-mixed-operators': 0,
|
|
'@typescript-eslint/no-parameter-properties': 0,
|
|
'@typescript-eslint/ban-types': 0,
|
|
'no-shadow': 0,
|
|
'no-prototype-builtins': 0,
|
|
'array-callback-return': 0,
|
|
'@typescript-eslint/member-ordering': 0,
|
|
'react/no-find-dom-node': 0,
|
|
}
|
|
} |