mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
feat: AI Workflow Builder backend (no-changelog) (#14837)
This commit is contained in:
18
packages/@n8n/ai-workflow-builder/.eslintrc.js
Normal file
18
packages/@n8n/ai-workflow-builder/.eslintrc.js
Normal 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',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user