mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
12 lines
361 B
JavaScript
12 lines
361 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import { frontendConfig } from '@n8n/eslint-config/frontend';
|
|
|
|
export default defineConfig(frontendConfig, {
|
|
rules: {
|
|
//TODO: Remove these
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
|
|
'@typescript-eslint/no-unsafe-assignment': 'warn',
|
|
},
|
|
});
|