mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
18 lines
629 B
JavaScript
18 lines
629 B
JavaScript
import { frontendConfig } from '@n8n/eslint-config/frontend';
|
|
import { defineConfig } from 'eslint/config';
|
|
|
|
export default defineConfig(frontendConfig, {
|
|
rules: {
|
|
// TODO: Remove these
|
|
'no-empty': 'warn',
|
|
'@typescript-eslint/require-await': 'warn',
|
|
'@typescript-eslint/no-empty-object-type': 'warn',
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
'@typescript-eslint/no-unsafe-function-type': 'warn',
|
|
'@typescript-eslint/no-unsafe-call': 'warn',
|
|
'@typescript-eslint/no-unsafe-member-access': 'warn',
|
|
'@typescript-eslint/no-unsafe-return': 'warn',
|
|
'@typescript-eslint/no-unsafe-assignment': 'warn',
|
|
},
|
|
});
|