const sharedOptions = require('@n8n_io/eslint-config/shared'); /** * @type {import('@types/eslint').ESLint.ConfigData} */ module.exports = { extends: ['@n8n_io/eslint-config/node'], ...sharedOptions(__dirname), ignorePatterns: [ 'jest.config.js', // TODO: Remove these 'src/databases/ormconfig.ts', ], rules: { // 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', }, };