mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
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:
@@ -80,7 +80,7 @@ export class Airtable implements INodeType {
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'The ID of the base to access.',
|
||||
description: 'The ID of the base to access',
|
||||
},
|
||||
{
|
||||
displayName: 'Table ID',
|
||||
@@ -89,7 +89,7 @@ export class Airtable implements INodeType {
|
||||
default: '',
|
||||
placeholder: 'Stories',
|
||||
required: true,
|
||||
description: 'The ID of the table to access.',
|
||||
description: 'The ID of the table to access',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -107,7 +107,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: true,
|
||||
description: 'If all fields should be sent to Airtable or only specific ones.',
|
||||
description: 'If all fields should be sent to Airtable or only specific ones',
|
||||
},
|
||||
{
|
||||
displayName: 'Fields',
|
||||
@@ -130,7 +130,7 @@ export class Airtable implements INodeType {
|
||||
default: [],
|
||||
placeholder: 'Name',
|
||||
required: true,
|
||||
description: 'The name of fields for which data should be sent to Airtable.',
|
||||
description: 'The name of fields for which data should be sent to Airtable',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -149,7 +149,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Id of the record to delete.',
|
||||
description: 'ID of the record to delete',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -167,7 +167,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: true,
|
||||
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',
|
||||
@@ -188,7 +188,7 @@ export class Airtable implements INodeType {
|
||||
maxValue: 100,
|
||||
},
|
||||
default: 100,
|
||||
description: 'Number of results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Download Attachments',
|
||||
@@ -202,7 +202,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
|
||||
description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
|
||||
},
|
||||
{
|
||||
displayName: 'Download Fields',
|
||||
@@ -220,7 +220,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `Name of the fields of type 'attachment' that should be downloaded. Multiple ones can be defined separated by comma. Case sensitive and cannot include spaces after a comma.`,
|
||||
description: 'Name of the fields of type \'attachment\' that should be downloaded. Multiple ones can be defined separated by comma. Case sensitive and cannot include spaces after a comma.',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Options',
|
||||
@@ -247,7 +247,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
default: [],
|
||||
placeholder: 'Name',
|
||||
description: 'Only data for fields whose names are in this list will be included in the records.',
|
||||
description: 'Only data for fields whose names are in this list will be included in the records',
|
||||
},
|
||||
{
|
||||
displayName: 'Filter By Formula',
|
||||
@@ -261,7 +261,7 @@ export class Airtable implements INodeType {
|
||||
displayName: 'Sort',
|
||||
name: 'sort',
|
||||
placeholder: 'Add Sort Rule',
|
||||
description: 'Defines how the returned records should be ordered.',
|
||||
description: 'Defines how the returned records should be ordered',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
@@ -277,7 +277,7 @@ export class Airtable implements INodeType {
|
||||
name: 'field',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name of the field to sort on.',
|
||||
description: 'Name of the field to sort on',
|
||||
},
|
||||
{
|
||||
displayName: 'Direction',
|
||||
@@ -296,7 +296,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
],
|
||||
default: 'asc',
|
||||
description: 'The sort direction.',
|
||||
description: 'The sort direction',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -329,7 +329,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Id of the record to return.',
|
||||
description: 'ID of the record to return',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -348,7 +348,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Id of the record to update.',
|
||||
description: 'ID of the record to update',
|
||||
},
|
||||
{
|
||||
displayName: 'Update All Fields',
|
||||
@@ -362,7 +362,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: true,
|
||||
description: 'If all fields should be sent to Airtable or only specific ones.',
|
||||
description: 'If all fields should be sent to Airtable or only specific ones',
|
||||
},
|
||||
{
|
||||
displayName: 'Fields',
|
||||
@@ -385,7 +385,7 @@ export class Airtable implements INodeType {
|
||||
default: [],
|
||||
placeholder: 'Name',
|
||||
required: true,
|
||||
description: 'The name of fields for which data should be sent to Airtable.',
|
||||
description: 'The name of fields for which data should be sent to Airtable',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -416,7 +416,7 @@ export class Airtable implements INodeType {
|
||||
maxValue: 10,
|
||||
},
|
||||
default: 10,
|
||||
description: `Number of records to process at once.`,
|
||||
description: 'Number of records to process at once',
|
||||
},
|
||||
{
|
||||
displayName: 'Ignore Fields',
|
||||
@@ -433,7 +433,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'Comma-separated list of fields to ignore.',
|
||||
description: 'Comma-separated list of fields to ignore',
|
||||
},
|
||||
{
|
||||
displayName: 'Typecast',
|
||||
@@ -448,7 +448,7 @@ export class Airtable implements INodeType {
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'If the Airtable API should attempt mapping of string values for linked records & select options.',
|
||||
description: 'If the Airtable API should attempt mapping of string values for linked records & select options',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user