mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-14 18:28:13 +00:00
18 lines
525 B
JavaScript
18 lines
525 B
JavaScript
module.exports = {
|
|
extends: 'eslint-config-ali/typescript/react',
|
|
rules: {
|
|
'react/no-multi-comp': 0,
|
|
'no-unused-expressions': 1,
|
|
'implicit-arrow-linebreak': 1,
|
|
'no-nested-ternary': 1,
|
|
'no-mixed-operators': 1,
|
|
'@typescript-eslint/no-parameter-properties': 1,
|
|
'@typescript-eslint/ban-types': 1,
|
|
'no-shadow': 1,
|
|
'no-prototype-builtins': 1,
|
|
'no-confusing-arrow': 1,
|
|
'no-case-declarations': 1,
|
|
'lines-between-class-members': 0,
|
|
'@typescript-eslint/member-ordering': 0,
|
|
}
|
|
} |