mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-06 02:11:56 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
module.exports = {
|
|
extends: 'eslint-config-ali/typescript/react',
|
|
rules: {
|
|
'max-len': ['error', { code: 200 }],
|
|
'function-paren-newline': 'off',
|
|
'@typescript-eslint/indent': 'off',
|
|
},
|
|
};
|