11 lines
265 B
JavaScript
Executable File
11 lines
265 B
JavaScript
Executable File
import { defineConfig } from 'eslint/config';
|
|
import { nodeConfig } from '@n8n/eslint-config/node';
|
|
|
|
export default defineConfig(nodeConfig, {
|
|
rules: {
|
|
// TODO: Remove this
|
|
'no-prototype-builtins': 'warn',
|
|
'@typescript-eslint/require-await': 'warn',
|
|
},
|
|
});
|