mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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:
@@ -152,7 +152,7 @@ export class GoogleSlides implements INodeType {
|
||||
{
|
||||
displayName: 'Title',
|
||||
name: 'title',
|
||||
description: 'Title of the presentation to create.',
|
||||
description: 'Title of the presentation to create',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
@@ -205,7 +205,7 @@ export class GoogleSlides implements INodeType {
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -229,12 +229,12 @@ export class GoogleSlides implements INodeType {
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Page Object ID',
|
||||
name: 'pageObjectId',
|
||||
description: 'ID of the page object to retrieve.',
|
||||
description: 'ID of the page object to retrieve',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
@@ -292,21 +292,21 @@ export class GoogleSlides implements INodeType {
|
||||
'presentationId',
|
||||
],
|
||||
},
|
||||
description: 'If non-empty, limits the matches to page elements only on the given pages.',
|
||||
description: 'If non-empty, limits the matches to page elements only on the given pages',
|
||||
},
|
||||
{
|
||||
displayName: 'Replace Text',
|
||||
name: 'replaceText',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The text that will replace the matched text.',
|
||||
description: 'The text that will replace the matched text',
|
||||
},
|
||||
{
|
||||
displayName: 'Text',
|
||||
name: 'text',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The text to search for in the shape or table.',
|
||||
description: 'The text to search for in the shape or table',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -334,7 +334,7 @@ export class GoogleSlides implements INodeType {
|
||||
name: 'revisionId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The revision ID of the presentation required for the write request. If specified and the requiredRevisionId doesn't exactly match the presentation's current revisionId, the request will not be processed and will return a 400 bad request error.`,
|
||||
description: 'The revision ID of the presentation required for the write request. If specified and the requiredRevisionId doesn\'t exactly match the presentation\'s current revisionId, the request will not be processed and will return a 400 bad request error.',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -354,7 +354,7 @@ export class GoogleSlides implements INodeType {
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'Name of the binary property to which to write the data of the read page.',
|
||||
description: 'Name of the binary property to which to write the data of the read page',
|
||||
},
|
||||
{
|
||||
displayName: 'Binary Property',
|
||||
@@ -362,7 +362,7 @@ export class GoogleSlides implements INodeType {
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: 'data',
|
||||
description: 'Name of the binary property to which to write to.',
|
||||
description: 'Name of the binary property to which to write to',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
||||
Reference in New Issue
Block a user