refactor(nodes-base): Apply lint rule node-param-operation-option-description-wrong-for-get-many (#4064)

* 👕 Enable rule

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Apply rule

* ✏️ Fix plurals

* ✏️ More typos

* ✏️ Final typos
This commit is contained in:
Iván Ovejero
2022-09-13 12:36:36 +02:00
committed by GitHub
parent 9f92a4d681
commit 3a9c7acb04
354 changed files with 376 additions and 375 deletions

View File

@@ -158,7 +158,7 @@ export class Mailchimp implements INodeType {
{
name: 'Get Many',
value: 'getAll',
description: 'Get all members on list',
description: 'Get many members on a list',
action: 'Get many members',
},
{
@@ -212,7 +212,7 @@ export class Mailchimp implements INodeType {
{
name: 'Get Many',
value: 'getAll',
description: 'Get all groups',
description: 'Get many groups',
action: 'Get many list groups',
},
],
@@ -245,7 +245,7 @@ export class Mailchimp implements INodeType {
{
name: 'Get Many',
value: 'getAll',
description: 'Get all the campaigns',
description: 'Get many campaigns',
action: 'Get many campaigns',
},
{
@@ -2192,7 +2192,7 @@ export class Mailchimp implements INodeType {
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail()) {
returnData.push({json:{ error: error.message }});
returnData.push({ json: { error: error.message } });
continue;
}
throw error;