This commit is contained in:
bendwit 2025-07-21 12:14:01 +02:00
commit a44448d380
17 changed files with 721 additions and 0 deletions

16
.eslintrc.prepublish.js Normal file
View file

@ -0,0 +1,16 @@
/**
* @type {import('@types/eslint').ESLint.ConfigData}
*/
module.exports = {
extends: "./.eslintrc.js",
overrides: [
{
files: ['package.json'],
plugins: ['eslint-plugin-n8n-nodes-base'],
rules: {
'n8n-nodes-base/community-package-json-name-still-default': 'error',
},
},
],
};