13 lines
331 B
JavaScript
13 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',
|
||
|
|
},
|
||
|
|
});
|