mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import { nodeConfig } from '@n8n/eslint-config/node';
|
|
|
|
export default defineConfig(nodeConfig, {
|
|
rules: {
|
|
'unicorn/filename-case': ['error', { case: 'kebabCase' }],
|
|
complexity: 'error',
|
|
'@typescript-eslint/require-await': 'warn',
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
},
|
|
});
|