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:
@@ -21,7 +21,7 @@ export const labelOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Add to Card',
|
||||
value: 'addLabel',
|
||||
description: 'Add a label to a card.',
|
||||
description: 'Add a label to a card',
|
||||
},
|
||||
{
|
||||
name: 'Create',
|
||||
@@ -46,12 +46,12 @@ export const labelOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Remove From Card',
|
||||
value: 'removeLabel',
|
||||
description: 'Remove a label from a card.',
|
||||
description: 'Remove a label from a card',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Update a label.',
|
||||
description: 'Update a label',
|
||||
},
|
||||
|
||||
],
|
||||
@@ -81,7 +81,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the board to create the label on.',
|
||||
description: 'The ID of the board to create the label on',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
@@ -99,7 +99,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'Name for the label.',
|
||||
description: 'Name for the label',
|
||||
},
|
||||
{
|
||||
displayName: 'Color',
|
||||
@@ -163,7 +163,7 @@ export const labelFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'null',
|
||||
description: 'The color for the label.',
|
||||
description: 'The color for the label',
|
||||
},
|
||||
|
||||
|
||||
@@ -186,7 +186,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the label to delete.',
|
||||
description: 'The ID of the label to delete',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -208,7 +208,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the board to get label.',
|
||||
description: 'The ID of the board to get label',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -256,7 +256,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'Get information about a label by ID.',
|
||||
description: 'Get information about a label by ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -304,7 +304,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the card to get label.',
|
||||
description: 'The ID of the card to get label',
|
||||
},
|
||||
{
|
||||
displayName: 'Label ID',
|
||||
@@ -322,7 +322,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the label to add.',
|
||||
description: 'The ID of the label to add',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -344,7 +344,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the card to remove label from.',
|
||||
description: 'The ID of the card to remove label from',
|
||||
},
|
||||
{
|
||||
displayName: 'Label ID',
|
||||
@@ -362,7 +362,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the label to remove.',
|
||||
description: 'The ID of the label to remove',
|
||||
},
|
||||
|
||||
// ----------------------------------
|
||||
@@ -384,7 +384,7 @@ export const labelFields: INodeProperties[] = [
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the label to update.',
|
||||
description: 'The ID of the label to update',
|
||||
},
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
@@ -408,7 +408,7 @@ export const labelFields: INodeProperties[] = [
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name of the label.',
|
||||
description: 'Name of the label',
|
||||
},
|
||||
{
|
||||
displayName: 'Color',
|
||||
@@ -461,7 +461,7 @@ export const labelFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'null',
|
||||
description: 'The color for the label.',
|
||||
description: 'The color for the label',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user