14 lines
463 B
JavaScript
14 lines
463 B
JavaScript
|
|
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',
|
||
|
|
},
|
||
|
|
});
|