feat: AI Workflow Builder backend (no-changelog) (#14837)

This commit is contained in:
oleg
2025-04-24 08:43:35 +02:00
committed by GitHub
parent 8c4b9f73f1
commit 1b1d6043d6
24 changed files with 1655 additions and 26 deletions

View File

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