mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
8 lines
248 B
JavaScript
8 lines
248 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import { frontendConfig } from '@n8n/eslint-config/frontend';
|
|
|
|
export default defineConfig(frontendConfig, {
|
|
files: ['**/*.test.ts'],
|
|
rules: { '@typescript-eslint/no-unsafe-assignment': 'warn' },
|
|
});
|