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

@@ -99,7 +99,7 @@ export const fileFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
description: `The new name for the copy. If this isn't provided, the same name will be used as the original.`,
description: 'The new name for the copy. If this isn\'t provided, the same name will be used as the original.',
},
],
},
@@ -126,28 +126,28 @@ export const fileFields: INodeProperties[] = [
name: 'driveId',
type: 'string',
default: '',
description: 'Identifier of the drive instance that contains the item.',
description: 'Identifier of the drive instance that contains the item',
},
{
displayName: 'Drive Type',
name: 'driveType',
type: 'string',
default: '',
description: 'Identifies the type of drive.',
description: 'Identifies the type of drive',
},
{
displayName: 'ID',
name: 'id',
type: 'string',
default: '',
description: 'Identifier of the item in the drive.',
description: 'Identifier of the item in the drive',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
default: '',
description: 'Identifier of the list.',
description: 'Identifier of the list',
},
{
displayName: 'Name',
@@ -168,14 +168,14 @@ export const fileFields: INodeProperties[] = [
name: 'shareId',
type: 'string',
default: '',
description: 'Identifier for a shared resource that can be accessed via the Shares API.',
description: 'Identifier for a shared resource that can be accessed via the Shares API',
},
{
displayName: 'Site ID',
name: 'siteId',
type: 'string',
default: '',
description: 'Identifier of the site.',
description: 'Identifier of the site',
},
],
},
@@ -234,7 +234,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
description: 'Name of the binary property to which to write the data of the read file.',
description: 'Name of the binary property to which to write the data of the read file',
},
/* -------------------------------------------------------------------------- */
/* file:get */
@@ -371,7 +371,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
description: 'The name the file should be saved as.',
description: 'The name the file should be saved as',
},
{
displayName: 'Parent ID',
@@ -389,7 +389,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
description: 'ID of the parent folder that will contain the file.',
description: 'ID of the parent folder that will contain the file',
},
{
displayName: 'Binary Data',
@@ -407,7 +407,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
description: 'If the data to upload should be taken from binary field.',
description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -430,7 +430,7 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
description: 'The text content of the file.',
description: 'The text content of the file',
},
{
displayName: 'Binary Property',
@@ -453,6 +453,6 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
description: 'Name of the binary property which contains the data for the file.',
description: 'Name of the binary property which contains the data for the file',
},
];