14 lines
463 B
JavaScript
Executable File
14 lines
463 B
JavaScript
Executable File
import { defineConfig } from 'eslint/config';
|
|
import { frontendConfig } from '@n8n/eslint-config/frontend';
|
|
|
|
export default defineConfig(frontendConfig, {
|
|
rules: {
|
|
// TODO: Remove this
|
|
'@typescript-eslint/require-await': 'warn',
|
|
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
'@typescript-eslint/no-unsafe-member-access': 'warn',
|
|
'@typescript-eslint/no-unsafe-assignment': 'warn',
|
|
},
|
|
});
|