mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00:00
16 lines
458 B
JavaScript
16 lines
458 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
|
|
}
|
|
} |