mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
12 lines
375 B
JavaScript
12 lines
375 B
JavaScript
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import { baseConfig } from '@n8n/eslint-config/base';
|
|
|
|
export default defineConfig(baseConfig, globalIgnores(['src/expressions/grammar*.ts']), {
|
|
rules: {
|
|
// TODO: Remove this
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
'no-useless-escape': 'warn',
|
|
'@typescript-eslint/unbound-method': 'warn',
|
|
},
|
|
});
|