ci: @n8n/task-runner package setup (no-changelog) (#11067)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-10-02 16:14:57 +02:00
committed by GitHub
parent 4546649c61
commit 49c71469f4
13 changed files with 256 additions and 434 deletions

View File

@@ -0,0 +1,19 @@
const sharedOptions = require('@n8n_io/eslint-config/shared');
/**
* @type {import('@types/eslint').ESLint.ConfigData}
*/
module.exports = {
extends: ['@n8n_io/eslint-config/node'],
...sharedOptions(__dirname),
ignorePatterns: ['jest.config.js'],
rules: {
'unicorn/filename-case': ['error', { case: 'kebabCase' }],
'@typescript-eslint/no-duplicate-imports': 'off',
complexity: 'error',
},
};