diff --git a/.eslintrc.js b/.eslintrc.js index fec36fa..762a3ff 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -115,6 +115,8 @@ module.exports = { 'n8n-nodes-base/node-param-display-name-wrong-for-update-fields': 'error', 'n8n-nodes-base/node-param-min-value-wrong-for-limit': 'error', 'n8n-nodes-base/node-param-multi-options-type-unsorted-items': 'error', + // 'n8n-nodes-base/node-param-operation-option-action-miscased': 'error', // TODO: Uncomment once #3610 merged to master + // 'n8n-nodes-base/node-param-operation-option-without-action': 'error', // TODO: Uncomment once #3610 merged to master 'n8n-nodes-base/node-param-operation-without-no-data-expression': 'error', 'n8n-nodes-base/node-param-option-description-identical-to-name': 'error', 'n8n-nodes-base/node-param-option-name-containing-star': 'error', diff --git a/nodes/HttpBin/HttpVerbDescription.ts b/nodes/HttpBin/HttpVerbDescription.ts index 95bc8a1..727c7f7 100644 --- a/nodes/HttpBin/HttpVerbDescription.ts +++ b/nodes/HttpBin/HttpVerbDescription.ts @@ -17,6 +17,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'GET', value: 'get', + // action: 'Perform a GET request', // TODO: Uncomment once #3610 merged to master routing: { request: { method: 'GET', @@ -27,6 +28,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'DELETE', value: 'delete', + // action: 'Perform a DELETE request', // TODO: Uncomment once #3610 merged to master routing: { request: { method: 'DELETE', diff --git a/package.json b/package.json index 786448b..5e2e750 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "@types/express": "^4.17.6", "@types/request-promise-native": "~1.0.15", "@typescript-eslint/parser": "^5.29.0", - "eslint-plugin-n8n-nodes-base": "~1.1.1", + "eslint-plugin-n8n-nodes-base": "^1.2.0", "gulp": "^4.0.2", "n8n-core": "~0.122.1", "n8n-workflow": "~0.104.0",