Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ module.exports = {
'n8n-nodes-base/node-param-multi-options-type-unsorted-items': 'error',
'n8n-nodes-base/node-param-operation-without-no-data-expression': 'error',
'n8n-nodes-base/node-param-operation-option-action-wrong-for-get-many': 'error',
'n8n-nodes-base/node-param-operation-option-description-wrong-for-get-many': 'error',
'n8n-nodes-base/node-param-operation-option-without-action': 'error',
'n8n-nodes-base/node-param-option-description-identical-to-name': 'error',
'n8n-nodes-base/node-param-option-name-containing-star': 'error',
Expand Down
194 changes: 10 additions & 184 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const accountOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all accounts',
description: 'Get data of many accounts',
action: 'Get many accounts',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const connectionOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all connections',
description: 'Get data of many connections',
action: 'Get many connections',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const contactOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all contact',
description: 'Get data of many contacts',
action: 'Get many contacts',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const dealOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all deals',
description: 'Get data of many deals',
action: 'Get many deals',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const ecomCustomerOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all E-commerce Customer',
description: 'Get data of many E-commerce Customers',
action: 'Get many e-commerce customers',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ecomOrderOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all orders',
description: 'Get data of many orders',
action: 'Get many e-commerce orders',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const ecomOrderProductsOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all order products',
description: 'Get data of many order products',
action: 'Get many ecommerce orders',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const listOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get all lists',
description: 'Get many lists',
action: 'Get many lists',
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/ActiveCampaign/TagDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const tagOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get data of all tags',
description: 'Get data of many tags',
action: 'Get many tags',
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Affinity/ListDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const listOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get all lists',
description: 'Get many lists',
action: 'Get many lists',
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Affinity/ListEntryDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const listEntryOperations: INodeProperties[] = [
{
name: 'Get Many',
value: 'getAll',
description: 'Get all list entries',
description: 'Get many list entries',
action: 'Get many list entries',
},
],
Expand Down
Loading