@n8n/eslint-plugin-community-nodes 0.20.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/.turbo/turbo-build$colon$unchecked.log +1 -1
  2. package/README.md +47 -38
  3. package/dist/plugin.d.ts +54 -0
  4. package/dist/plugin.d.ts.map +1 -1
  5. package/dist/plugin.js +18 -0
  6. package/dist/plugin.js.map +1 -1
  7. package/dist/rules/ai-node-package-json.d.ts.map +1 -1
  8. package/dist/rules/ai-node-package-json.js +4 -3
  9. package/dist/rules/ai-node-package-json.js.map +1 -1
  10. package/dist/rules/cred-filename-against-convention.d.ts +2 -0
  11. package/dist/rules/cred-filename-against-convention.d.ts.map +1 -0
  12. package/dist/rules/cred-filename-against-convention.js +42 -0
  13. package/dist/rules/cred-filename-against-convention.js.map +1 -0
  14. package/dist/rules/icon-prefer-themed-variants.d.ts +2 -0
  15. package/dist/rules/icon-prefer-themed-variants.d.ts.map +1 -0
  16. package/dist/rules/icon-prefer-themed-variants.js +53 -0
  17. package/dist/rules/icon-prefer-themed-variants.js.map +1 -0
  18. package/dist/rules/icon-validation.d.ts +1 -1
  19. package/dist/rules/icon-validation.d.ts.map +1 -1
  20. package/dist/rules/icon-validation.js +4 -25
  21. package/dist/rules/icon-validation.js.map +1 -1
  22. package/dist/rules/index.d.ts +10 -1
  23. package/dist/rules/index.d.ts.map +1 -1
  24. package/dist/rules/index.js +18 -0
  25. package/dist/rules/index.js.map +1 -1
  26. package/dist/rules/no-dangerous-functions.d.ts +2 -0
  27. package/dist/rules/no-dangerous-functions.d.ts.map +1 -0
  28. package/dist/rules/no-dangerous-functions.js +121 -0
  29. package/dist/rules/no-dangerous-functions.js.map +1 -0
  30. package/dist/rules/no-emoji-in-options.d.ts +2 -0
  31. package/dist/rules/no-emoji-in-options.d.ts.map +1 -0
  32. package/dist/rules/no-emoji-in-options.js +86 -0
  33. package/dist/rules/no-emoji-in-options.js.map +1 -0
  34. package/dist/rules/node-class-description-name-camelcase.d.ts +2 -0
  35. package/dist/rules/node-class-description-name-camelcase.d.ts.map +1 -0
  36. package/dist/rules/node-class-description-name-camelcase.js +92 -0
  37. package/dist/rules/node-class-description-name-camelcase.js.map +1 -0
  38. package/dist/rules/node-filename-against-convention.d.ts +2 -0
  39. package/dist/rules/node-filename-against-convention.d.ts.map +1 -0
  40. package/dist/rules/node-filename-against-convention.js +61 -0
  41. package/dist/rules/node-filename-against-convention.js.map +1 -0
  42. package/dist/rules/node-registration-complete.d.ts +2 -0
  43. package/dist/rules/node-registration-complete.d.ts.map +1 -0
  44. package/dist/rules/node-registration-complete.js +60 -0
  45. package/dist/rules/node-registration-complete.js.map +1 -0
  46. package/dist/rules/require-version.d.ts +2 -0
  47. package/dist/rules/require-version.d.ts.map +1 -0
  48. package/dist/rules/require-version.js +50 -0
  49. package/dist/rules/require-version.js.map +1 -0
  50. package/dist/rules/valid-author.d.ts +2 -0
  51. package/dist/rules/valid-author.d.ts.map +1 -0
  52. package/dist/rules/valid-author.js +89 -0
  53. package/dist/rules/valid-author.js.map +1 -0
  54. package/dist/rules/valid-peer-dependencies.d.ts.map +1 -1
  55. package/dist/rules/valid-peer-dependencies.js +5 -3
  56. package/dist/rules/valid-peer-dependencies.js.map +1 -1
  57. package/dist/typecheck.tsbuildinfo +1 -0
  58. package/dist/utils/file-utils.d.ts +7 -2
  59. package/dist/utils/file-utils.d.ts.map +1 -1
  60. package/dist/utils/file-utils.js +47 -10
  61. package/dist/utils/file-utils.js.map +1 -1
  62. package/docs/rules/cred-filename-against-convention.md +42 -0
  63. package/docs/rules/icon-prefer-themed-variants.md +71 -0
  64. package/docs/rules/icon-validation.md +5 -3
  65. package/docs/rules/no-dangerous-functions.md +41 -0
  66. package/docs/rules/no-emoji-in-options.md +60 -0
  67. package/docs/rules/node-class-description-name-camelcase.md +41 -0
  68. package/docs/rules/node-filename-against-convention.md +50 -0
  69. package/docs/rules/node-registration-complete.md +46 -0
  70. package/docs/rules/require-version.md +51 -0
  71. package/docs/rules/valid-author.md +60 -0
  72. package/docs/rules/valid-peer-dependencies.md +1 -1
  73. package/package.json +4 -4
  74. package/src/plugin.ts +18 -0
  75. package/src/rules/ai-node-package-json.test.ts +5 -0
  76. package/src/rules/ai-node-package-json.ts +4 -3
  77. package/src/rules/cred-filename-against-convention.test.ts +72 -0
  78. package/src/rules/cred-filename-against-convention.ts +48 -0
  79. package/src/rules/icon-prefer-themed-variants.test.ts +128 -0
  80. package/src/rules/icon-prefer-themed-variants.ts +70 -0
  81. package/src/rules/icon-validation.test.ts +10 -0
  82. package/src/rules/icon-validation.ts +4 -28
  83. package/src/rules/index.ts +18 -0
  84. package/src/rules/no-dangerous-functions.test.ts +83 -0
  85. package/src/rules/no-dangerous-functions.ts +155 -0
  86. package/src/rules/no-emoji-in-options.test.ts +157 -0
  87. package/src/rules/no-emoji-in-options.ts +105 -0
  88. package/src/rules/node-class-description-name-camelcase.test.ts +121 -0
  89. package/src/rules/node-class-description-name-camelcase.ts +114 -0
  90. package/src/rules/node-filename-against-convention.test.ts +115 -0
  91. package/src/rules/node-filename-against-convention.ts +76 -0
  92. package/src/rules/node-registration-complete.test.ts +87 -0
  93. package/src/rules/node-registration-complete.ts +79 -0
  94. package/src/rules/require-version.test.ts +90 -0
  95. package/src/rules/require-version.ts +62 -0
  96. package/src/rules/valid-author.test.ts +108 -0
  97. package/src/rules/valid-author.ts +100 -0
  98. package/src/rules/valid-peer-dependencies.test.ts +5 -0
  99. package/src/rules/valid-peer-dependencies.ts +5 -3
  100. package/src/utils/file-utils.ts +58 -11
  101. package/tsconfig.build.tsbuildinfo +0 -1
@@ -1,4 +1,4 @@
1
1
 
2
- > @n8n/eslint-plugin-community-nodes@0.20.0 build:unchecked /home/runner/work/n8n/n8n/packages/@n8n/eslint-plugin-community-nodes
2
+ > @n8n/eslint-plugin-community-nodes@0.22.0 build:unchecked /home/runner/work/n8n/n8n/packages/@n8n/eslint-plugin-community-nodes
3
3
  > tsc --project tsconfig.build.json --noCheck
4
4
 
package/README.md CHANGED
@@ -44,43 +44,52 @@ export default [
44
44
  💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).\
45
45
  ❌ Deprecated.
46
46
 
47
- | Name                                | Description | 💼 | ⚠️ | 🔧 | 💡 | ❌ |
48
- | :--------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--- | :--- | :- | :- | :- |
49
- | [ai-node-package-json](docs/rules/ai-node-package-json.md) | Enforce consistency between n8n.aiNodeSdkVersion and ai-node-sdk peer dependency in community node packages | ✅ ☑️ | | | | |
50
- | [cred-class-field-icon-missing](docs/rules/cred-class-field-icon-missing.md) | Credential class must have an `icon` property defined | ✅ ☑️ | | | 💡 | |
51
- | [cred-class-name-field-conventions](docs/rules/cred-class-name-field-conventions.md) | Credential `name` field must end with `Api` and start with a lowercase letter | ✅ ☑️ | | 🔧 | | |
52
- | [cred-class-name-suffix](docs/rules/cred-class-name-suffix.md) | Credential class names must be suffixed with `Api` | ✅ ☑️ | | 🔧 | | |
53
- | [cred-class-oauth2-naming](docs/rules/cred-class-oauth2-naming.md) | OAuth2 credentials must include `OAuth2` in the class name, `name`, and `displayName` | ✅ ☑️ | | 🔧 | | |
54
- | [credential-documentation-url](docs/rules/credential-documentation-url.md) | Enforce valid credential documentationUrl format (URL or lowercase alphanumeric slug) | ✅ ☑️ | | 🔧 | | |
55
- | [credential-password-field](docs/rules/credential-password-field.md) | Ensure credential fields with sensitive names have typeOptions.password = true | ✅ ☑️ | | 🔧 | | |
56
- | [credential-test-required](docs/rules/credential-test-required.md) | Ensure credentials have a credential test | ✅ ☑️ | | | 💡 | |
57
- | [icon-validation](docs/rules/icon-validation.md) | Validate node and credential icon files exist, are SVG format, and light/dark icons are different | ✅ ☑️ | | | 💡 | |
58
- | [missing-paired-item](docs/rules/missing-paired-item.md) | Require pairedItem on INodeExecutionData objects in execute() methods to preserve item linking. | ✅ ☑️ | | | | |
59
- | [n8n-object-validation](docs/rules/n8n-object-validation.md) | Validate the structure of the "n8n" object in community node package.json (required keys, types, and dist/ paths) | ✅ ☑️ | | | | |
60
- | [no-builder-hint-leakage](docs/rules/no-builder-hint-leakage.md) | Disallow wire-format expression syntax (={{...}}) and NodeConnectionType string literals in builderHint texts and AI-builder prompts. Use expr() and SDK-canonical references instead. | ✅ ☑️ | | | | |
61
- | [no-credential-reuse](docs/rules/no-credential-reuse.md) | Prevent credential re-use security issues by ensuring nodes only reference credentials from the same package | ✅ ☑️ | | | 💡 | |
62
- | [no-deprecated-workflow-functions](docs/rules/no-deprecated-workflow-functions.md) | Disallow usage of deprecated functions and types from n8n-workflow package | ✅ ☑️ | | | 💡 | |
63
- | [no-forbidden-lifecycle-scripts](docs/rules/no-forbidden-lifecycle-scripts.md) | Ban lifecycle scripts (prepare, preinstall, postinstall, etc.) in community node packages | ✅ ☑️ | | | | |
64
- | [no-http-request-with-manual-auth](docs/rules/no-http-request-with-manual-auth.md) | Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead. | ✅ ☑️ | | | | |
65
- | [no-overrides-field](docs/rules/no-overrides-field.md) | Ban the "overrides" field in community node package.json | ✅ ☑️ | | | | |
66
- | [no-restricted-globals](docs/rules/no-restricted-globals.md) | Disallow usage of restricted global variables in community nodes. | ✅ | | | | |
67
- | [no-restricted-imports](docs/rules/no-restricted-imports.md) | Disallow usage of restricted imports in community nodes. | ✅ | | | | |
68
- | [no-runtime-dependencies](docs/rules/no-runtime-dependencies.md) | Disallow non-empty "dependencies" in community node package.json | ✅ ☑️ | | | | |
69
- | [no-template-placeholders](docs/rules/no-template-placeholders.md) | Disallow unresolved template placeholders in package.json | ✅ ☑️ | | | | |
70
- | [node-class-description-icon-missing](docs/rules/node-class-description-icon-missing.md) | Node class description must have an `icon` property defined. Deprecated: use `require-node-description-fields` instead. | | | | 💡 | ❌ |
71
- | [node-connection-type-literal](docs/rules/node-connection-type-literal.md) | Disallow string literals in node description `inputs`/`outputs` — use `NodeConnectionTypes` enum instead | ✅ ☑️ | | 🔧 | | |
72
- | [node-operation-error-itemindex](docs/rules/node-operation-error-itemindex.md) | Require { itemIndex } in NodeOperationError / NodeApiError options inside item loops | ✅ ☑️ | | | | |
73
- | [node-usable-as-tool](docs/rules/node-usable-as-tool.md) | Ensure node classes have usableAsTool property | ✅ ☑️ | | 🔧 | | |
74
- | [options-sorted-alphabetically](docs/rules/options-sorted-alphabetically.md) | Enforce alphabetical ordering of options arrays in n8n node properties | | ✅ ☑️ | | | |
75
- | [package-name-convention](docs/rules/package-name-convention.md) | Enforce correct package naming convention for n8n community nodes | ✅ ☑️ | | | 💡 | |
76
- | [require-community-node-keyword](docs/rules/require-community-node-keyword.md) | Require the "n8n-community-node-package" keyword in community node package.json | | ✅ ☑️ | 🔧 | | |
77
- | [require-continue-on-fail](docs/rules/require-continue-on-fail.md) | Require continueOnFail() handling in execute() methods of node classes | ✅ ☑️ | | | | |
78
- | [require-node-api-error](docs/rules/require-node-api-error.md) | Require NodeApiError or NodeOperationError for error wrapping in catch blocks. Raw errors lose HTTP context in the n8n UI. | ✅ ☑️ | | | | |
79
- | [require-node-description-fields](docs/rules/require-node-description-fields.md) | Node class description must define all required fields: icon, subtitle | ✅ ☑️ | | | | |
80
- | [resource-operation-pattern](docs/rules/resource-operation-pattern.md) | Enforce proper resource/operation pattern for better UX in n8n nodes | | ☑️ | | | |
81
- | [valid-credential-references](docs/rules/valid-credential-references.md) | Ensure credentials referenced in node descriptions exist as credential classes in the package | ✅ ☑️ | | | 💡 | |
82
- | [valid-description](docs/rules/valid-description.md) | Require a non-empty "description" field in community node package.json | ✅ ☑️ | | | | |
83
- | [valid-peer-dependencies](docs/rules/valid-peer-dependencies.md) | Require community node package.json peerDependencies to contain only "n8n-workflow": "*" (and optionally "ai-node-sdk") | ✅ ☑️ | | 🔧 | | |
84
- | [webhook-lifecycle-complete](docs/rules/webhook-lifecycle-complete.md) | Require webhook trigger nodes to implement the complete webhookMethods lifecycle (checkExists, create, delete) | ✅ ☑️ | | | | |
47
+ | Name                                  | Description | 💼 | ⚠️ | 🔧 | 💡 | ❌ |
48
+ | :------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--- | :--- | :- | :- | :- |
49
+ | [ai-node-package-json](docs/rules/ai-node-package-json.md) | Enforce consistency between n8n.aiNodeSdkVersion and ai-node-sdk peer dependency in community node packages | ✅ ☑️ | | | | |
50
+ | [cred-class-field-icon-missing](docs/rules/cred-class-field-icon-missing.md) | Credential class must have an `icon` property defined | ✅ ☑️ | | | 💡 | |
51
+ | [cred-class-name-field-conventions](docs/rules/cred-class-name-field-conventions.md) | Credential `name` field must end with `Api` and start with a lowercase letter | ✅ ☑️ | | 🔧 | | |
52
+ | [cred-class-name-suffix](docs/rules/cred-class-name-suffix.md) | Credential class names must be suffixed with `Api` | ✅ ☑️ | | 🔧 | | |
53
+ | [cred-class-oauth2-naming](docs/rules/cred-class-oauth2-naming.md) | OAuth2 credentials must include `OAuth2` in the class name, `name`, and `displayName` | ✅ ☑️ | | 🔧 | | |
54
+ | [cred-filename-against-convention](docs/rules/cred-filename-against-convention.md) | Credential filename must match the credential class name | ✅ ☑️ | | | | |
55
+ | [credential-documentation-url](docs/rules/credential-documentation-url.md) | Enforce valid credential documentationUrl format (URL or lowercase alphanumeric slug) | ✅ ☑️ | | 🔧 | | |
56
+ | [credential-password-field](docs/rules/credential-password-field.md) | Ensure credential fields with sensitive names have typeOptions.password = true | ✅ ☑️ | | 🔧 | | |
57
+ | [credential-test-required](docs/rules/credential-test-required.md) | Ensure credentials have a credential test | ✅ ☑️ | | | 💡 | |
58
+ | [icon-prefer-themed-variants](docs/rules/icon-prefer-themed-variants.md) | Encourage node and credential icons to provide light/dark variants instead of a single icon file | | ✅ ☑️ | | | |
59
+ | [icon-validation](docs/rules/icon-validation.md) | Validate node and credential icon files exist, use the file: protocol, and that light/dark icons are different | ✅ ☑️ | | | 💡 | |
60
+ | [missing-paired-item](docs/rules/missing-paired-item.md) | Require pairedItem on INodeExecutionData objects in execute() methods to preserve item linking. | ✅ ☑️ | | | | |
61
+ | [n8n-object-validation](docs/rules/n8n-object-validation.md) | Validate the structure of the "n8n" object in community node package.json (required keys, types, and dist/ paths) | ✅ ☑️ | | | | |
62
+ | [no-builder-hint-leakage](docs/rules/no-builder-hint-leakage.md) | Disallow wire-format expression syntax (={{...}}) and NodeConnectionType string literals in builderHint texts and AI-builder prompts. Use expr() and SDK-canonical references instead. | ✅ ☑️ | | | | |
63
+ | [no-credential-reuse](docs/rules/no-credential-reuse.md) | Prevent credential re-use security issues by ensuring nodes only reference credentials from the same package | ✅ ☑️ | | | 💡 | |
64
+ | [no-dangerous-functions](docs/rules/no-dangerous-functions.md) | Disallow `eval`, the `Function` constructor, and `child_process` process-spawning functions (`exec`, `spawn`, etc.) in community nodes. | ✅ ☑️ | | | | |
65
+ | [no-deprecated-workflow-functions](docs/rules/no-deprecated-workflow-functions.md) | Disallow usage of deprecated functions and types from n8n-workflow package | ✅ ☑️ | | | 💡 | |
66
+ | [no-emoji-in-options](docs/rules/no-emoji-in-options.md) | Disallow emoji characters in node option name and displayName values | ✅ ☑️ | | | | |
67
+ | [no-forbidden-lifecycle-scripts](docs/rules/no-forbidden-lifecycle-scripts.md) | Ban lifecycle scripts (prepare, preinstall, postinstall, etc.) in community node packages | ✅ ☑️ | | | | |
68
+ | [no-http-request-with-manual-auth](docs/rules/no-http-request-with-manual-auth.md) | Disallow this.helpers.httpRequest() in functions that call this.getCredentials(). Use this.helpers.httpRequestWithAuthentication() instead. | ✅ ☑️ | | | | |
69
+ | [no-overrides-field](docs/rules/no-overrides-field.md) | Ban the "overrides" field in community node package.json | ✅ ☑️ | | | | |
70
+ | [no-restricted-globals](docs/rules/no-restricted-globals.md) | Disallow usage of restricted global variables in community nodes. | | | | | |
71
+ | [no-restricted-imports](docs/rules/no-restricted-imports.md) | Disallow usage of restricted imports in community nodes. | ✅ | | | | |
72
+ | [no-runtime-dependencies](docs/rules/no-runtime-dependencies.md) | Disallow non-empty "dependencies" in community node package.json | ✅ ☑️ | | | | |
73
+ | [no-template-placeholders](docs/rules/no-template-placeholders.md) | Disallow unresolved template placeholders in package.json | ✅ ☑️ | | | | |
74
+ | [node-class-description-icon-missing](docs/rules/node-class-description-icon-missing.md) | Node class description must have an `icon` property defined. Deprecated: use `require-node-description-fields` instead. | | | | 💡 ||
75
+ | [node-class-description-name-camelcase](docs/rules/node-class-description-name-camelcase.md) | Node class `description.name` must be camelCase | ✅ ☑️ | | 🔧 | | |
76
+ | [node-connection-type-literal](docs/rules/node-connection-type-literal.md) | Disallow string literals in node description `inputs`/`outputs` use `NodeConnectionTypes` enum instead | ✅ ☑️ | | 🔧 | | |
77
+ | [node-filename-against-convention](docs/rules/node-filename-against-convention.md) | Node filename must match the node `description.name` | ✅ ☑️ | | | | |
78
+ | [node-operation-error-itemindex](docs/rules/node-operation-error-itemindex.md) | Require { itemIndex } in NodeOperationError / NodeApiError options inside item loops | ✅ ☑️ | | | | |
79
+ | [node-registration-complete](docs/rules/node-registration-complete.md) | Ensure every `.node.ts` file in the `nodes/` directory is registered in the "n8n.nodes" array of package.json | | ✅ ☑️ | | | |
80
+ | [node-usable-as-tool](docs/rules/node-usable-as-tool.md) | Ensure node classes have usableAsTool property | ☑️ | | 🔧 | | |
81
+ | [options-sorted-alphabetically](docs/rules/options-sorted-alphabetically.md) | Enforce alphabetical ordering of options arrays in n8n node properties | | ✅ ☑️ | | | |
82
+ | [package-name-convention](docs/rules/package-name-convention.md) | Enforce correct package naming convention for n8n community nodes | ✅ ☑️ | | | 💡 | |
83
+ | [require-community-node-keyword](docs/rules/require-community-node-keyword.md) | Require the "n8n-community-node-package" keyword in community node package.json | | ✅ ☑️ | 🔧 | | |
84
+ | [require-continue-on-fail](docs/rules/require-continue-on-fail.md) | Require continueOnFail() handling in execute() methods of node classes | ✅ ☑️ | | | | |
85
+ | [require-node-api-error](docs/rules/require-node-api-error.md) | Require NodeApiError or NodeOperationError for error wrapping in catch blocks. Raw errors lose HTTP context in the n8n UI. | ✅ ☑️ | | | | |
86
+ | [require-node-description-fields](docs/rules/require-node-description-fields.md) | Node class description must define all required fields: icon, subtitle | ✅ ☑️ | | | | |
87
+ | [require-version](docs/rules/require-version.md) | Require a valid "version" field in community node package.json | ✅ ☑️ | | | | |
88
+ | [resource-operation-pattern](docs/rules/resource-operation-pattern.md) | Enforce proper resource/operation pattern for better UX in n8n nodes | | ✅ ☑️ | | | |
89
+ | [valid-author](docs/rules/valid-author.md) | Require a non-empty author name and email in package.json | ✅ ☑️ | | | | |
90
+ | [valid-credential-references](docs/rules/valid-credential-references.md) | Ensure credentials referenced in node descriptions exist as credential classes in the package | ✅ ☑️ | | | 💡 | |
91
+ | [valid-description](docs/rules/valid-description.md) | Require a non-empty "description" field in community node package.json | ✅ ☑️ | | | | |
92
+ | [valid-peer-dependencies](docs/rules/valid-peer-dependencies.md) | Require community node package.json peerDependencies to contain only "n8n-workflow": "*" (and optionally "@n8n/ai-node-sdk") | ✅ ☑️ | | 🔧 | | |
93
+ | [webhook-lifecycle-complete](docs/rules/webhook-lifecycle-complete.md) | Require webhook trigger nodes to implement the complete webhookMethods lifecycle (checkExists, create, delete) | ✅ ☑️ | | | | |
85
94
 
86
95
  <!-- end auto-generated rules list -->
package/dist/plugin.d.ts CHANGED
@@ -20,16 +20,19 @@ declare const configs: {
20
20
  '@n8n/community-nodes/credential-password-field': "error";
21
21
  '@n8n/community-nodes/n8n-object-validation': "error";
22
22
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
23
+ '@n8n/community-nodes/no-emoji-in-options': "error";
23
24
  '@n8n/community-nodes/node-usable-as-tool': "error";
24
25
  '@n8n/community-nodes/package-name-convention': "error";
25
26
  '@n8n/community-nodes/credential-test-required': "error";
26
27
  '@n8n/community-nodes/no-credential-reuse': "error";
28
+ '@n8n/community-nodes/no-dangerous-functions': "error";
27
29
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
28
30
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
29
31
  '@n8n/community-nodes/no-overrides-field': "error";
30
32
  '@n8n/community-nodes/no-runtime-dependencies': "error";
31
33
  '@n8n/community-nodes/no-template-placeholders': "error";
32
34
  '@n8n/community-nodes/icon-validation': "error";
35
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
33
36
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
34
37
  '@n8n/community-nodes/resource-operation-pattern': "warn";
35
38
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -37,14 +40,20 @@ declare const configs: {
37
40
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
38
41
  '@n8n/community-nodes/cred-class-name-suffix': "error";
39
42
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
43
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
40
44
  '@n8n/community-nodes/node-connection-type-literal': "error";
45
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
46
+ '@n8n/community-nodes/node-filename-against-convention': "error";
41
47
  '@n8n/community-nodes/missing-paired-item': "error";
42
48
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
43
49
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
50
+ '@n8n/community-nodes/node-registration-complete': "warn";
44
51
  '@n8n/community-nodes/require-community-node-keyword': "warn";
45
52
  '@n8n/community-nodes/require-continue-on-fail': "error";
46
53
  '@n8n/community-nodes/require-node-api-error': "error";
47
54
  '@n8n/community-nodes/require-node-description-fields': "error";
55
+ '@n8n/community-nodes/require-version': "error";
56
+ '@n8n/community-nodes/valid-author': "error";
48
57
  '@n8n/community-nodes/valid-credential-references': "error";
49
58
  '@n8n/community-nodes/valid-description': "error";
50
59
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -68,16 +77,19 @@ declare const configs: {
68
77
  '@n8n/community-nodes/credential-password-field': "error";
69
78
  '@n8n/community-nodes/n8n-object-validation': "error";
70
79
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
80
+ '@n8n/community-nodes/no-emoji-in-options': "error";
71
81
  '@n8n/community-nodes/node-usable-as-tool': "error";
72
82
  '@n8n/community-nodes/package-name-convention': "error";
73
83
  '@n8n/community-nodes/credential-test-required': "error";
74
84
  '@n8n/community-nodes/no-credential-reuse': "error";
85
+ '@n8n/community-nodes/no-dangerous-functions': "error";
75
86
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
76
87
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
77
88
  '@n8n/community-nodes/no-overrides-field': "error";
78
89
  '@n8n/community-nodes/no-runtime-dependencies': "error";
79
90
  '@n8n/community-nodes/no-template-placeholders': "error";
80
91
  '@n8n/community-nodes/icon-validation': "error";
92
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
81
93
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
82
94
  '@n8n/community-nodes/credential-documentation-url': "error";
83
95
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -85,14 +97,20 @@ declare const configs: {
85
97
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
86
98
  '@n8n/community-nodes/cred-class-name-suffix': "error";
87
99
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
100
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
88
101
  '@n8n/community-nodes/node-connection-type-literal': "error";
102
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
103
+ '@n8n/community-nodes/node-filename-against-convention': "error";
89
104
  '@n8n/community-nodes/missing-paired-item': "error";
90
105
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
91
106
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
107
+ '@n8n/community-nodes/node-registration-complete': "warn";
92
108
  '@n8n/community-nodes/require-community-node-keyword': "warn";
93
109
  '@n8n/community-nodes/require-continue-on-fail': "error";
94
110
  '@n8n/community-nodes/require-node-api-error': "error";
95
111
  '@n8n/community-nodes/require-node-description-fields': "error";
112
+ '@n8n/community-nodes/require-version': "error";
113
+ '@n8n/community-nodes/valid-author': "error";
96
114
  '@n8n/community-nodes/valid-credential-references': "error";
97
115
  '@n8n/community-nodes/valid-description': "error";
98
116
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -121,16 +139,19 @@ declare const pluginWithConfigs: {
121
139
  '@n8n/community-nodes/credential-password-field': "error";
122
140
  '@n8n/community-nodes/n8n-object-validation': "error";
123
141
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
142
+ '@n8n/community-nodes/no-emoji-in-options': "error";
124
143
  '@n8n/community-nodes/node-usable-as-tool': "error";
125
144
  '@n8n/community-nodes/package-name-convention': "error";
126
145
  '@n8n/community-nodes/credential-test-required': "error";
127
146
  '@n8n/community-nodes/no-credential-reuse': "error";
147
+ '@n8n/community-nodes/no-dangerous-functions': "error";
128
148
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
129
149
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
130
150
  '@n8n/community-nodes/no-overrides-field': "error";
131
151
  '@n8n/community-nodes/no-runtime-dependencies': "error";
132
152
  '@n8n/community-nodes/no-template-placeholders': "error";
133
153
  '@n8n/community-nodes/icon-validation': "error";
154
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
134
155
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
135
156
  '@n8n/community-nodes/resource-operation-pattern': "warn";
136
157
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -138,14 +159,20 @@ declare const pluginWithConfigs: {
138
159
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
139
160
  '@n8n/community-nodes/cred-class-name-suffix': "error";
140
161
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
162
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
141
163
  '@n8n/community-nodes/node-connection-type-literal': "error";
164
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
165
+ '@n8n/community-nodes/node-filename-against-convention': "error";
142
166
  '@n8n/community-nodes/missing-paired-item': "error";
143
167
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
144
168
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
169
+ '@n8n/community-nodes/node-registration-complete': "warn";
145
170
  '@n8n/community-nodes/require-community-node-keyword': "warn";
146
171
  '@n8n/community-nodes/require-continue-on-fail': "error";
147
172
  '@n8n/community-nodes/require-node-api-error': "error";
148
173
  '@n8n/community-nodes/require-node-description-fields': "error";
174
+ '@n8n/community-nodes/require-version': "error";
175
+ '@n8n/community-nodes/valid-author': "error";
149
176
  '@n8n/community-nodes/valid-credential-references': "error";
150
177
  '@n8n/community-nodes/valid-description': "error";
151
178
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -169,16 +196,19 @@ declare const pluginWithConfigs: {
169
196
  '@n8n/community-nodes/credential-password-field': "error";
170
197
  '@n8n/community-nodes/n8n-object-validation': "error";
171
198
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
199
+ '@n8n/community-nodes/no-emoji-in-options': "error";
172
200
  '@n8n/community-nodes/node-usable-as-tool': "error";
173
201
  '@n8n/community-nodes/package-name-convention': "error";
174
202
  '@n8n/community-nodes/credential-test-required': "error";
175
203
  '@n8n/community-nodes/no-credential-reuse': "error";
204
+ '@n8n/community-nodes/no-dangerous-functions': "error";
176
205
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
177
206
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
178
207
  '@n8n/community-nodes/no-overrides-field': "error";
179
208
  '@n8n/community-nodes/no-runtime-dependencies': "error";
180
209
  '@n8n/community-nodes/no-template-placeholders': "error";
181
210
  '@n8n/community-nodes/icon-validation': "error";
211
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
182
212
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
183
213
  '@n8n/community-nodes/credential-documentation-url': "error";
184
214
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -186,14 +216,20 @@ declare const pluginWithConfigs: {
186
216
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
187
217
  '@n8n/community-nodes/cred-class-name-suffix': "error";
188
218
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
219
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
189
220
  '@n8n/community-nodes/node-connection-type-literal': "error";
221
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
222
+ '@n8n/community-nodes/node-filename-against-convention': "error";
190
223
  '@n8n/community-nodes/missing-paired-item': "error";
191
224
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
192
225
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
226
+ '@n8n/community-nodes/node-registration-complete': "warn";
193
227
  '@n8n/community-nodes/require-community-node-keyword': "warn";
194
228
  '@n8n/community-nodes/require-continue-on-fail': "error";
195
229
  '@n8n/community-nodes/require-node-api-error': "error";
196
230
  '@n8n/community-nodes/require-node-description-fields': "error";
231
+ '@n8n/community-nodes/require-version': "error";
232
+ '@n8n/community-nodes/valid-author': "error";
197
233
  '@n8n/community-nodes/valid-credential-references': "error";
198
234
  '@n8n/community-nodes/valid-description': "error";
199
235
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -229,16 +265,19 @@ declare const n8nCommunityNodesPlugin: {
229
265
  '@n8n/community-nodes/credential-password-field': "error";
230
266
  '@n8n/community-nodes/n8n-object-validation': "error";
231
267
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
268
+ '@n8n/community-nodes/no-emoji-in-options': "error";
232
269
  '@n8n/community-nodes/node-usable-as-tool': "error";
233
270
  '@n8n/community-nodes/package-name-convention': "error";
234
271
  '@n8n/community-nodes/credential-test-required': "error";
235
272
  '@n8n/community-nodes/no-credential-reuse': "error";
273
+ '@n8n/community-nodes/no-dangerous-functions': "error";
236
274
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
237
275
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
238
276
  '@n8n/community-nodes/no-overrides-field': "error";
239
277
  '@n8n/community-nodes/no-runtime-dependencies': "error";
240
278
  '@n8n/community-nodes/no-template-placeholders': "error";
241
279
  '@n8n/community-nodes/icon-validation': "error";
280
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
242
281
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
243
282
  '@n8n/community-nodes/resource-operation-pattern': "warn";
244
283
  '@n8n/community-nodes/credential-documentation-url': "error";
@@ -246,14 +285,20 @@ declare const n8nCommunityNodesPlugin: {
246
285
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
247
286
  '@n8n/community-nodes/cred-class-name-suffix': "error";
248
287
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
288
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
249
289
  '@n8n/community-nodes/node-connection-type-literal': "error";
290
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
291
+ '@n8n/community-nodes/node-filename-against-convention': "error";
250
292
  '@n8n/community-nodes/missing-paired-item': "error";
251
293
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
252
294
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
295
+ '@n8n/community-nodes/node-registration-complete': "warn";
253
296
  '@n8n/community-nodes/require-community-node-keyword': "warn";
254
297
  '@n8n/community-nodes/require-continue-on-fail': "error";
255
298
  '@n8n/community-nodes/require-node-api-error': "error";
256
299
  '@n8n/community-nodes/require-node-description-fields': "error";
300
+ '@n8n/community-nodes/require-version': "error";
301
+ '@n8n/community-nodes/valid-author': "error";
257
302
  '@n8n/community-nodes/valid-credential-references': "error";
258
303
  '@n8n/community-nodes/valid-description': "error";
259
304
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -277,16 +322,19 @@ declare const n8nCommunityNodesPlugin: {
277
322
  '@n8n/community-nodes/credential-password-field': "error";
278
323
  '@n8n/community-nodes/n8n-object-validation': "error";
279
324
  '@n8n/community-nodes/no-deprecated-workflow-functions': "error";
325
+ '@n8n/community-nodes/no-emoji-in-options': "error";
280
326
  '@n8n/community-nodes/node-usable-as-tool': "error";
281
327
  '@n8n/community-nodes/package-name-convention': "error";
282
328
  '@n8n/community-nodes/credential-test-required': "error";
283
329
  '@n8n/community-nodes/no-credential-reuse': "error";
330
+ '@n8n/community-nodes/no-dangerous-functions': "error";
284
331
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': "error";
285
332
  '@n8n/community-nodes/no-http-request-with-manual-auth': "error";
286
333
  '@n8n/community-nodes/no-overrides-field': "error";
287
334
  '@n8n/community-nodes/no-runtime-dependencies': "error";
288
335
  '@n8n/community-nodes/no-template-placeholders': "error";
289
336
  '@n8n/community-nodes/icon-validation': "error";
337
+ '@n8n/community-nodes/icon-prefer-themed-variants': "warn";
290
338
  '@n8n/community-nodes/options-sorted-alphabetically': "warn";
291
339
  '@n8n/community-nodes/credential-documentation-url': "error";
292
340
  '@n8n/community-nodes/resource-operation-pattern': "warn";
@@ -294,14 +342,20 @@ declare const n8nCommunityNodesPlugin: {
294
342
  '@n8n/community-nodes/cred-class-name-field-conventions': "error";
295
343
  '@n8n/community-nodes/cred-class-name-suffix': "error";
296
344
  '@n8n/community-nodes/cred-class-oauth2-naming': "error";
345
+ '@n8n/community-nodes/cred-filename-against-convention': "error";
297
346
  '@n8n/community-nodes/node-connection-type-literal': "error";
347
+ '@n8n/community-nodes/node-class-description-name-camelcase': "error";
348
+ '@n8n/community-nodes/node-filename-against-convention': "error";
298
349
  '@n8n/community-nodes/missing-paired-item': "error";
299
350
  '@n8n/community-nodes/no-builder-hint-leakage': "error";
300
351
  '@n8n/community-nodes/node-operation-error-itemindex': "error";
352
+ '@n8n/community-nodes/node-registration-complete': "warn";
301
353
  '@n8n/community-nodes/require-community-node-keyword': "warn";
302
354
  '@n8n/community-nodes/require-continue-on-fail': "error";
303
355
  '@n8n/community-nodes/require-node-api-error': "error";
304
356
  '@n8n/community-nodes/require-node-description-fields': "error";
357
+ '@n8n/community-nodes/require-version': "error";
358
+ '@n8n/community-nodes/valid-author': "error";
305
359
  '@n8n/community-nodes/valid-credential-references': "error";
306
360
  '@n8n/community-nodes/valid-description': "error";
307
361
  '@n8n/community-nodes/valid-peer-dependencies': "error";
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAU,MAAM,QAAQ,CAAC;AAG7C,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAYzC,QAAA,MAAM,OAAO;;;;;;;;;;uBAHI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwFE,CAAC;AAE1C,QAAA,MAAM,iBAAiB;;;;;;;;;;;2BA1FN,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA0FiC,CAAC;AAEzE,QAAA,MAAM,uBAAuB;;;;;;;;;;;2BA5FZ,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA4FU,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAU,MAAM,QAAQ,CAAC;AAG7C,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAYzC,QAAA,MAAM,OAAO;;;;;;;;;;uBAHI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0GE,CAAC;AAE1C,QAAA,MAAM,iBAAiB;;;;;;;;;;;2BA5GN,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA4GiC,CAAC;AAEzE,QAAA,MAAM,uBAAuB;;;;;;;;;;;2BA9GZ,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAtB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC;CA8GU,CAAC;AAClD,eAAe,iBAAiB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,uBAAuB,EAAE,CAAC"}
package/dist/plugin.js CHANGED
@@ -22,16 +22,19 @@ const configs = {
22
22
  '@n8n/community-nodes/credential-password-field': 'error',
23
23
  '@n8n/community-nodes/n8n-object-validation': 'error',
24
24
  '@n8n/community-nodes/no-deprecated-workflow-functions': 'error',
25
+ '@n8n/community-nodes/no-emoji-in-options': 'error',
25
26
  '@n8n/community-nodes/node-usable-as-tool': 'error',
26
27
  '@n8n/community-nodes/package-name-convention': 'error',
27
28
  '@n8n/community-nodes/credential-test-required': 'error',
28
29
  '@n8n/community-nodes/no-credential-reuse': 'error',
30
+ '@n8n/community-nodes/no-dangerous-functions': 'error',
29
31
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': 'error',
30
32
  '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
31
33
  '@n8n/community-nodes/no-overrides-field': 'error',
32
34
  '@n8n/community-nodes/no-runtime-dependencies': 'error',
33
35
  '@n8n/community-nodes/no-template-placeholders': 'error',
34
36
  '@n8n/community-nodes/icon-validation': 'error',
37
+ '@n8n/community-nodes/icon-prefer-themed-variants': 'warn',
35
38
  '@n8n/community-nodes/options-sorted-alphabetically': 'warn',
36
39
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
37
40
  '@n8n/community-nodes/credential-documentation-url': 'error',
@@ -39,14 +42,20 @@ const configs = {
39
42
  '@n8n/community-nodes/cred-class-name-field-conventions': 'error',
40
43
  '@n8n/community-nodes/cred-class-name-suffix': 'error',
41
44
  '@n8n/community-nodes/cred-class-oauth2-naming': 'error',
45
+ '@n8n/community-nodes/cred-filename-against-convention': 'error',
42
46
  '@n8n/community-nodes/node-connection-type-literal': 'error',
47
+ '@n8n/community-nodes/node-class-description-name-camelcase': 'error',
48
+ '@n8n/community-nodes/node-filename-against-convention': 'error',
43
49
  '@n8n/community-nodes/missing-paired-item': 'error',
44
50
  '@n8n/community-nodes/no-builder-hint-leakage': 'error',
45
51
  '@n8n/community-nodes/node-operation-error-itemindex': 'error',
52
+ '@n8n/community-nodes/node-registration-complete': 'warn',
46
53
  '@n8n/community-nodes/require-community-node-keyword': 'warn',
47
54
  '@n8n/community-nodes/require-continue-on-fail': 'error',
48
55
  '@n8n/community-nodes/require-node-api-error': 'error',
49
56
  '@n8n/community-nodes/require-node-description-fields': 'error',
57
+ '@n8n/community-nodes/require-version': 'error',
58
+ '@n8n/community-nodes/valid-author': 'error',
50
59
  '@n8n/community-nodes/valid-credential-references': 'error',
51
60
  '@n8n/community-nodes/valid-description': 'error',
52
61
  '@n8n/community-nodes/valid-peer-dependencies': 'error',
@@ -63,16 +72,19 @@ const configs = {
63
72
  '@n8n/community-nodes/credential-password-field': 'error',
64
73
  '@n8n/community-nodes/n8n-object-validation': 'error',
65
74
  '@n8n/community-nodes/no-deprecated-workflow-functions': 'error',
75
+ '@n8n/community-nodes/no-emoji-in-options': 'error',
66
76
  '@n8n/community-nodes/node-usable-as-tool': 'error',
67
77
  '@n8n/community-nodes/package-name-convention': 'error',
68
78
  '@n8n/community-nodes/credential-test-required': 'error',
69
79
  '@n8n/community-nodes/no-credential-reuse': 'error',
80
+ '@n8n/community-nodes/no-dangerous-functions': 'error',
70
81
  '@n8n/community-nodes/no-forbidden-lifecycle-scripts': 'error',
71
82
  '@n8n/community-nodes/no-http-request-with-manual-auth': 'error',
72
83
  '@n8n/community-nodes/no-overrides-field': 'error',
73
84
  '@n8n/community-nodes/no-runtime-dependencies': 'error',
74
85
  '@n8n/community-nodes/no-template-placeholders': 'error',
75
86
  '@n8n/community-nodes/icon-validation': 'error',
87
+ '@n8n/community-nodes/icon-prefer-themed-variants': 'warn',
76
88
  '@n8n/community-nodes/options-sorted-alphabetically': 'warn',
77
89
  '@n8n/community-nodes/credential-documentation-url': 'error',
78
90
  '@n8n/community-nodes/resource-operation-pattern': 'warn',
@@ -80,14 +92,20 @@ const configs = {
80
92
  '@n8n/community-nodes/cred-class-name-field-conventions': 'error',
81
93
  '@n8n/community-nodes/cred-class-name-suffix': 'error',
82
94
  '@n8n/community-nodes/cred-class-oauth2-naming': 'error',
95
+ '@n8n/community-nodes/cred-filename-against-convention': 'error',
83
96
  '@n8n/community-nodes/node-connection-type-literal': 'error',
97
+ '@n8n/community-nodes/node-class-description-name-camelcase': 'error',
98
+ '@n8n/community-nodes/node-filename-against-convention': 'error',
84
99
  '@n8n/community-nodes/missing-paired-item': 'error',
85
100
  '@n8n/community-nodes/no-builder-hint-leakage': 'error',
86
101
  '@n8n/community-nodes/node-operation-error-itemindex': 'error',
102
+ '@n8n/community-nodes/node-registration-complete': 'warn',
87
103
  '@n8n/community-nodes/require-community-node-keyword': 'warn',
88
104
  '@n8n/community-nodes/require-continue-on-fail': 'error',
89
105
  '@n8n/community-nodes/require-node-api-error': 'error',
90
106
  '@n8n/community-nodes/require-node-description-fields': 'error',
107
+ '@n8n/community-nodes/require-version': 'error',
108
+ '@n8n/community-nodes/valid-author': 'error',
91
109
  '@n8n/community-nodes/valid-credential-references': 'error',
92
110
  '@n8n/community-nodes/valid-description': 'error',
93
111
  '@n8n/community-nodes/valid-peer-dependencies': 'error',
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"ai-node-package-json.d.ts","sourceRoot":"","sources":["../../src/rules/ai-node-package-json.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,qBAAqB,iNA0FhC,CAAC"}
1
+ {"version":3,"file":"ai-node-package-json.d.ts","sourceRoot":"","sources":["../../src/rules/ai-node-package-json.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,qBAAqB,iNA2FhC,CAAC"}
@@ -8,8 +8,8 @@ export const AiNodePackageJsonRule = createRule({
8
8
  description: 'Enforce consistency between n8n.aiNodeSdkVersion and ai-node-sdk peer dependency in community node packages',
9
9
  },
10
10
  messages: {
11
- missingPeerDep: 'Package declares "n8n.aiNodeSdkVersion" but is missing "ai-node-sdk" in peerDependencies. Add "ai-node-sdk": "*" to peerDependencies.',
12
- missingSdkVersion: 'Package has "ai-node-sdk" in peerDependencies but is missing "aiNodeSdkVersion" in the "n8n" section of package.json.',
11
+ missingPeerDep: 'Package declares "n8n.aiNodeSdkVersion" but is missing "@n8n/ai-node-sdk" in peerDependencies. Add "@n8n/ai-node-sdk": "*" to peerDependencies.',
12
+ missingSdkVersion: 'Package has "@n8n/ai-node-sdk" in peerDependencies but is missing "aiNodeSdkVersion" in the "n8n" section of package.json.',
13
13
  invalidSdkVersion: '"n8n.aiNodeSdkVersion" must be a positive integer, got {{ value }}.',
14
14
  wrongLocation: '"aiNodeSdkVersion" must be inside the "n8n" section, not at the root level of package.json.',
15
15
  },
@@ -35,7 +35,8 @@ export const AiNodePackageJsonRule = createRule({
35
35
  const peerDependenciesProp = findJsonProperty(node, 'peerDependencies');
36
36
  const hasAiNodeSdkVersion = aiNodeSdkVersionProp !== null;
37
37
  const hasAiNodeSdkPeerDep = peerDependenciesProp?.value.type === AST_NODE_TYPES.ObjectExpression &&
38
- findJsonProperty(peerDependenciesProp.value, 'ai-node-sdk') !== null;
38
+ (findJsonProperty(peerDependenciesProp.value, '@n8n/ai-node-sdk') !== null ||
39
+ findJsonProperty(peerDependenciesProp.value, 'ai-node-sdk') !== null);
39
40
  // Catch aiNodeSdkVersion placed at root level instead of inside n8n
40
41
  if (rootAiNodeSdkVersionProp) {
41
42
  context.report({
@@ -1 +1 @@
1
- {"version":3,"file":"ai-node-package-json.js","sourceRoot":"","sources":["../../src/rules/ai-node-package-json.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ai-node-package-json.js","sourceRoot":"","sources":["../../src/rules/ai-node-package-json.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export declare const CredFilenameAgainstConventionRule: import("@typescript-eslint/utils/ts-eslint").RuleModule<"renameFile", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
2
+ //# sourceMappingURL=cred-filename-against-convention.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cred-filename-against-convention.d.ts","sourceRoot":"","sources":["../../src/rules/cred-filename-against-convention.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iCAAiC,+IA2C5C,CAAC"}