mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
16 lines
443 B
Plaintext
16 lines
443 B
Plaintext
const { getESLintConfig } = require('@iceworks/spec');
|
|
|
|
// https://www.npmjs.com/package/@iceworks/spec
|
|
module.exports = {
|
|
...getESLintConfig('rax'),
|
|
rules: {
|
|
'max-len': ['error', { code: 200 }],
|
|
'function-paren-newline': 'off',
|
|
'@typescript-eslint/indent': 'off',
|
|
'prettier/prettier': 'off',
|
|
'no-empty': 'off',
|
|
'no-unused-vars': 'off',
|
|
'@iceworks/best-practices/recommend-functional-component': 'off',
|
|
},
|
|
};
|