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

@@ -69,7 +69,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
description: `Topic of the meeting.`,
description: 'Topic of the meeting',
},
{
displayName: 'Additional Fields',
@@ -97,7 +97,7 @@ export const meetingFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
description: 'Meeting agenda.',
description: 'Meeting agenda',
},
{
displayName: 'Duration',
@@ -107,21 +107,21 @@ export const meetingFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
description: 'Meeting duration (minutes).',
description: 'Meeting duration (minutes)',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
description: 'Password to join the meeting with maximum 10 characters.',
description: 'Password to join the meeting with maximum 10 characters',
},
{
displayName: 'Schedule For',
name: 'scheduleFor',
type: 'string',
default: '',
description: 'Schedule meeting for someone else from your account, provide their email ID.',
description: 'Schedule meeting for someone else from your account, provide their email ID',
},
{
displayName: 'Settings',
@@ -150,14 +150,14 @@ export const meetingFields: INodeProperties[] = [
],
default: 'both',
description: 'Determine how participants can join audio portion of the meeting.',
description: 'Determine how participants can join audio portion of the meeting',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
description: 'Alternative hosts email IDs.',
description: 'Alternative hosts email IDs',
},
{
displayName: 'Auto Recording',
@@ -196,28 +196,28 @@ export const meetingFields: INodeProperties[] = [
name: 'hostVideo',
type: 'boolean',
default: false,
description: 'Start video when host joins the meeting.',
description: 'Start video when host joins the meeting',
},
{
displayName: 'Join Before Host',
name: 'joinBeforeHost',
type: 'boolean',
default: false,
description: 'Allow participants to join the meeting before host starts it.',
description: 'Allow participants to join the meeting before host starts it',
},
{
displayName: 'Muting Upon Entry',
name: 'muteUponEntry',
type: 'boolean',
default: false,
description: 'Mute participants upon entry.',
description: 'Mute participants upon entry',
},
{
displayName: 'Participant Video',
name: 'participantVideo',
type: 'boolean',
default: false,
description: 'Start video when participant joins the meeting.',
description: 'Start video when participant joins the meeting',
},
{
displayName: 'Registration Type',
@@ -245,7 +245,7 @@ export const meetingFields: INodeProperties[] = [
name: 'watermark',
type: 'boolean',
default: false,
description: 'Adds watermark when viewing a shared screen.',
description: 'Adds watermark when viewing a shared screen',
},
],
},
@@ -264,7 +264,7 @@ export const meetingFields: INodeProperties[] = [
loadOptionsMethod: 'getTimezones',
},
default: '',
description: `Time zone used in the response. The default is the time zone of the calendar.`,
description: 'Time zone used in the response. The default is the time zone of the calendar.',
},
{
displayName: 'Type',
@@ -290,7 +290,7 @@ export const meetingFields: INodeProperties[] = [
],
default: 2,
description: 'Meeting type.',
description: 'Meeting type',
},
],
},
@@ -313,7 +313,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
description: 'Meeting ID.',
description: 'Meeting ID',
},
{
displayName: 'Additional Fields',
@@ -338,14 +338,14 @@ export const meetingFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
description: 'To view meeting details of a particular occurrence of the recurring meeting.',
description: 'To view meeting details of a particular occurrence of the recurring meeting',
},
{
displayName: 'Show Previous Occurrences',
name: 'showPreviousOccurrences',
type: 'boolean',
default: false,
description: 'To view meeting details of all previous occurrences of the recurring meeting.',
description: 'To view meeting details of all previous occurrences of the recurring meeting',
},
],
},
@@ -367,7 +367,7 @@ export const meetingFields: INodeProperties[] = [
},
},
default: false,
description: 'If all results should be returned or only up to a given limit.',
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
@@ -391,7 +391,7 @@ export const meetingFields: INodeProperties[] = [
maxValue: 300,
},
default: 30,
description: 'How many results to return.',
description: 'Max number of results to return',
},
{
displayName: 'Filters',
@@ -433,7 +433,7 @@ export const meetingFields: INodeProperties[] = [
},
],
default: 'live',
description: `Meeting type.`,
description: 'Meeting type',
},
],
},
@@ -456,7 +456,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
description: 'Meeting ID.',
description: 'Meeting ID',
},
{
displayName: 'Additional Fields',
@@ -480,7 +480,7 @@ export const meetingFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
description: 'Meeting occurrence ID.',
description: 'Meeting occurrence ID',
},
{
displayName: 'Schedule Reminder',
@@ -511,7 +511,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
description: 'Meeting ID.',
description: 'Meeting ID',
},
{
displayName: 'Update Fields',
@@ -538,7 +538,7 @@ export const meetingFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
description: 'Meeting agenda.',
description: 'Meeting agenda',
},
{
displayName: 'Duration',
@@ -548,21 +548,21 @@ export const meetingFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
description: 'Meeting duration (minutes).',
description: 'Meeting duration (minutes)',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
description: 'Password to join the meeting with maximum 10 characters.',
description: 'Password to join the meeting with maximum 10 characters',
},
{
displayName: 'Schedule For',
name: 'scheduleFor',
type: 'string',
default: '',
description: 'Schedule meeting for someone else from your account, provide their email ID.',
description: 'Schedule meeting for someone else from your account, provide their email ID',
},
{
displayName: 'Settings',
@@ -591,14 +591,14 @@ export const meetingFields: INodeProperties[] = [
],
default: 'both',
description: 'Determine how participants can join audio portion of the meeting.',
description: 'Determine how participants can join audio portion of the meeting',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
description: 'Alternative hosts email IDs.',
description: 'Alternative hosts email IDs',
},
{
displayName: 'Auto Recording',
@@ -637,28 +637,28 @@ export const meetingFields: INodeProperties[] = [
name: 'hostVideo',
type: 'boolean',
default: false,
description: 'Start video when host joins the meeting.',
description: 'Start video when host joins the meeting',
},
{
displayName: 'Join Before Host',
name: 'joinBeforeHost',
type: 'boolean',
default: false,
description: 'Allow participants to join the meeting before host starts it.',
description: 'Allow participants to join the meeting before host starts it',
},
{
displayName: 'Muting Upon Entry',
name: 'muteUponEntry',
type: 'boolean',
default: false,
description: 'Mute participants upon entry.',
description: 'Mute participants upon entry',
},
{
displayName: 'Participant Video',
name: 'participantVideo',
type: 'boolean',
default: false,
description: 'Start video when participant joins the meeting.',
description: 'Start video when participant joins the meeting',
},
{
displayName: 'Registration Type',
@@ -686,7 +686,7 @@ export const meetingFields: INodeProperties[] = [
name: 'watermark',
type: 'boolean',
default: false,
description: 'Adds watermark when viewing a shared screen.',
description: 'Adds watermark when viewing a shared screen',
},
],
},
@@ -705,14 +705,14 @@ export const meetingFields: INodeProperties[] = [
loadOptionsMethod: 'getTimezones',
},
default: '',
description: `Time zone used in the response. The default is the time zone of the calendar.`,
description: 'Time zone used in the response. The default is the time zone of the calendar.',
},
{
displayName: 'Topic',
name: 'topic',
type: 'string',
default: '',
description: `Meeting topic.`,
description: 'Meeting topic',
},
{
displayName: 'Type',
@@ -738,7 +738,7 @@ export const meetingFields: INodeProperties[] = [
],
default: 2,
description: 'Meeting type.',
description: 'Meeting type',
},
],
},