refactor(nodes-base): Apply lint rule node-param-option-name-wrong-for-get-many (#4051)

* ⬆️ Upgrade linter

* 📦 Update `package-lock.json`

* 👕 Substitute rule

* 👕 Apply lintfix for `node-param-option-name-wrong-for-get-many`

* 👕 Restore lint exceptions
This commit is contained in:
Iván Ovejero
2022-09-07 16:51:14 +02:00
committed by GitHub
parent b020811ac1
commit ca8c2d6577
456 changed files with 2043 additions and 2187 deletions

View File

@@ -33,8 +33,8 @@ export const boardItemOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
description: "Create an item in a board's group",
action: "Create an item in a board's group",
description: 'Create an item in a board\'s group',
action: 'Create an item in a board\'s group',
},
{
name: 'Delete',
@@ -48,18 +48,18 @@ export const boardItemOperations: INodeProperties[] = [
description: 'Get an item',
action: 'Get an item',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all items',
action: 'Get all items',
},
{
name: 'Get By Column Value',
value: 'getByColumnValue',
description: 'Get items by column value',
action: 'Get items item by column value',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get all items',
action: 'Get all items',
},
{
name: 'Move',
value: 'move',