mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
const sharedOptions = require('@n8n/eslint-config/shared');
|
|
|
|
/** @type {import('@types/eslint').ESLint.ConfigData} */
|
|
module.exports = {
|
|
extends: ['@n8n/eslint-config/base'],
|
|
...sharedOptions(__dirname),
|
|
rules: {
|
|
'unicorn/filename-case': ['error', { case: 'kebabCase' }],
|
|
},
|
|
};
|