mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
12 lines
331 B
JavaScript
12 lines
331 B
JavaScript
import { defineConfig } from 'eslint/config';
|
|
import { baseConfig } from '@n8n/eslint-config/base';
|
|
|
|
export default defineConfig(baseConfig, {
|
|
rules: {
|
|
'unicorn/filename-case': ['error', { case: 'kebabCase' }],
|
|
|
|
// TODO: Remove this
|
|
'unicorn/filename-case': 'warn',
|
|
'@typescript-eslint/naming-convention': 'warn',
|
|
},
|
|
});
|