diff --git a/.eslintrc.js b/.eslintrc.js index e737932..6c45200 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -115,8 +115,6 @@ 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 727c7f7..95bc8a1 100644 --- a/nodes/HttpBin/HttpVerbDescription.ts +++ b/nodes/HttpBin/HttpVerbDescription.ts @@ -17,7 +17,6 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'GET', value: 'get', - // action: 'Perform a GET request', // TODO: Uncomment once #3610 merged to master routing: { request: { method: 'GET', @@ -28,7 +27,6 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'DELETE', value: 'delete', - // action: 'Perform a DELETE request', // TODO: Uncomment once #3610 merged to master routing: { request: { method: 'DELETE',