refactor: Apply more eslint-plugin-n8n-nodes-base autofixable rules (#3243)

* ✏️ Alphabetize rules

* 🔖 Update version

*  Update lintfix command

*  Run baseline lintfix

* 📦 Update package-lock.json

* 👕 Apply `node-param-description-untrimmed` (#3200)

* Removing unneeded backticks (#3249)

* 👕 Apply node-param-description-wrong-for-return-all (#3253)

* 👕 Apply node-param-description-missing-limit (#3252)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-excess-final-period (#3250)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-unencoded-angle-brackets (#3256)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-url-missing-protocol (#3258)

* 👕 Apply `node-param-description-miscased-id` (#3254)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-wrong-for-limit (#3257)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261)

* 👕 Apply rule

*  Restore lintfix script

*  Restore lintfix script

Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
Iván Ovejero
2022-05-06 23:01:25 +02:00
committed by GitHub
parent 1ef10dd23f
commit 63b6c9f128
689 changed files with 6828 additions and 6935 deletions

View File

@@ -115,7 +115,7 @@ export class Webhook implements INodeType {
},
],
default: 'none',
description: 'The way to authenticate.',
description: 'The way to authenticate',
},
{
displayName: 'HTTP Method',
@@ -148,7 +148,7 @@ export class Webhook implements INodeType {
},
],
default: 'GET',
description: 'The HTTP method to listen to.',
description: 'The HTTP method to listen to',
},
{
displayName: 'Path',
@@ -157,7 +157,7 @@ export class Webhook implements INodeType {
default: '',
placeholder: 'webhook',
required: true,
description: 'The path to listen to.',
description: 'The path to listen to',
},
{
displayName: 'Respond',
@@ -181,7 +181,7 @@ export class Webhook implements INodeType {
},
],
default: 'onReceived',
description: 'When and how to respond to the webhook.',
description: 'When and how to respond to the webhook',
},
{
displayName: 'Insert a \'Respond to Webhook\' node to control when and how you respond. <a href="https://docs.n8n.io/nodes/n8n-nodes-base.respondToWebhook" target="_blank">More details</a>',
@@ -244,7 +244,7 @@ export class Webhook implements INodeType {
{
name: 'No Response Body',
value: 'noData',
description: 'Returns without a body.',
description: 'Returns without a body',
},
],
default: 'firstEntryJson',
@@ -286,7 +286,7 @@ export class Webhook implements INodeType {
},
},
default: false,
description: 'Set to true if webhook will receive binary data.',
description: 'Set to true if webhook will receive binary data',
},
{
displayName: 'Binary Property',
@@ -364,7 +364,7 @@ export class Webhook implements INodeType {
},
default: '',
placeholder: 'success',
description: 'Custom response data to send.',
description: 'Custom response data to send',
},
{
displayName: 'Response Content-Type',
@@ -382,13 +382,13 @@ export class Webhook implements INodeType {
},
default: '',
placeholder: 'application/xml',
description: 'Set a custom content-type to return if another one as the "application/json" should be returned.',
description: 'Set a custom content-type to return if another one as the "application/json" should be returned',
},
{
displayName: 'Response Headers',
name: 'responseHeaders',
placeholder: 'Add Response Header',
description: 'Add headers to the webhook response.',
description: 'Add headers to the webhook response',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -404,14 +404,14 @@ export class Webhook implements INodeType {
name: 'name',
type: 'string',
default: '',
description: 'Name of the header.',
description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value of the header.',
description: 'Value of the header',
},
],
},
@@ -432,7 +432,7 @@ export class Webhook implements INodeType {
},
},
default: 'data',
description: 'Name of the property to return the data of instead of the whole JSON.',
description: 'Name of the property to return the data of instead of the whole JSON',
},
],
},