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:
@@ -109,7 +109,7 @@ export const adminFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -133,7 +133,7 @@ export const adminFields: INodeProperties[] = [
|
||||
maxValue: 64,
|
||||
},
|
||||
default: 64,
|
||||
description: 'How many results to return',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayOptions: {
|
||||
|
||||
@@ -92,7 +92,7 @@ export const hubFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -116,7 +116,7 @@ export const hubFields: INodeProperties[] = [
|
||||
maxValue: 64,
|
||||
},
|
||||
default: 64,
|
||||
description: 'How many results to return',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
...nameField,
|
||||
|
||||
@@ -35,7 +35,6 @@ export const eventNameField = {
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
required: false,
|
||||
default: '',
|
||||
description: 'A name for the webhook for identification',
|
||||
},
|
||||
|
||||
@@ -42,7 +42,6 @@ const additionalRecipientFields: INodeProperties[] = [
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Notes for this recipient: these are global notes that should not be task- or destination-specific',
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Skip Recipient SMS Notifications',
|
||||
@@ -50,7 +49,6 @@ const additionalRecipientFields: INodeProperties[] = [
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether this recipient has requested to skip SMS notifications',
|
||||
required: false,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -322,7 +320,6 @@ export const recipientFields: INodeProperties[] = [
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to skip validation for this recipient\'s phone number',
|
||||
required: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -165,7 +165,7 @@ export const taskFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -189,7 +189,7 @@ export const taskFields: INodeProperties[] = [
|
||||
maxValue: 64,
|
||||
},
|
||||
default: 64,
|
||||
description: 'How many results to return',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
...destinationExternalField,
|
||||
|
||||
@@ -354,7 +354,7 @@ export const teamFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -378,7 +378,7 @@ export const teamFields: INodeProperties[] = [
|
||||
maxValue: 64,
|
||||
},
|
||||
default: 64,
|
||||
description: 'How many results to return',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
|
||||
@@ -486,7 +486,7 @@ export const workerFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
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',
|
||||
@@ -510,7 +510,7 @@ export const workerFields: INodeProperties[] = [
|
||||
maxValue: 64,
|
||||
},
|
||||
default: 64,
|
||||
description: 'How many results to return',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -677,7 +677,6 @@ export const workerFields: INodeProperties[] = [
|
||||
name: 'analytics',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
required: false,
|
||||
description: 'Whether a more detailed response is needed, includes basic worker duty event, traveled distance (meters) and time analytics',
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user