mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
11 lines
280 B
JavaScript
11 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',
|
|
},
|
|
});
|