You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
455 B
15 lines
455 B
const { defineConfig } = require('@coze-arch/eslint-config');
|
|
|
|
module.exports = defineConfig({
|
|
packageRoot: __dirname,
|
|
preset: 'node',
|
|
rules: {
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'@coze-arch/no-batch-import-or-export': 'off',
|
|
'max-statements-per-line': 'off',
|
|
'max-lines': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@coze-arch/max-line-per-function': 'off',
|
|
},
|
|
});
|
|
|