mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
10 lines
280 B
JavaScript
10 lines
280 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import { baseConfig } from '@n8n/eslint-config/base';
|
|
|
|
export default defineConfig(baseConfig, {
|
|
rules: {
|
|
// TODO: Remove this
|
|
'@typescript-eslint/require-await': 'warn',
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
},
|
|
});
|