const sharedOptions = require('@n8n_io/eslint-config/shared'); /** * @type {import('@types/eslint').ESLint.ConfigData} */ module.exports = { extends: ['@n8n_io/eslint-config/node'], ...sharedOptions(__dirname), parserOptions: { project: './tsconfig.json', }, ignorePatterns: [ 'jest.config.js', // TODO: Remove these 'src/databases/ormconfig.ts', ], rules: { 'n8n-local-rules/no-dynamic-import-template': 'error', 'n8n-local-rules/misplaced-n8n-typeorm-import': 'error', complexity: 'error', // TODO: Remove this 'import/no-cycle': 'warn', 'import/order': 'off', 'import/extensions': 'warn', '@typescript-eslint/ban-ts-comment': ['warn', { 'ts-ignore': true }], '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-base-to-string': 'warn', '@typescript-eslint/prefer-nullish-coalescing': 'warn', '@typescript-eslint/no-redundant-type-constituents': 'warn', '@typescript-eslint/ban-types': 'warn', '@typescript-eslint/no-unsafe-enum-comparison': 'warn', '@typescript-eslint/no-unsafe-declaration-merging': 'warn', }, overrides: [ { files: ['./src/databases/**/*.ts', './test/**/*.ts'], rules: { 'n8n-local-rules/misplaced-n8n-typeorm-import': 'off', }, }, { files: ['./src/decorators/**/*.ts'], rules: { '@typescript-eslint/ban-types': [ 'warn', { types: { Function: false, }, }, ], }, }, ], };