mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
14 lines
504 B
JavaScript
14 lines
504 B
JavaScript
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import { baseConfig } from '@n8n/eslint-config/base';
|
|
|
|
export default defineConfig(baseConfig, globalIgnores(['src/grammar*.ts']), {
|
|
rules: {
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
'no-useless-escape': 'warn',
|
|
'@typescript-eslint/unbound-method': 'warn',
|
|
'@typescript-eslint/prefer-nullish-coalescing': 'warn',
|
|
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
},
|
|
});
|