mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +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:
@@ -66,7 +66,7 @@ export const groupFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `The group's email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique`,
|
||||
description: 'The group\'s email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -97,7 +97,7 @@ export const groupFields: INodeProperties[] = [
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The group's display name`,
|
||||
description: 'The group\'s display name',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -120,7 +120,7 @@ export const groupFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID.`,
|
||||
description: 'Identifies the group in the API request. The value can be the group\'s email address, group alias, or the unique group ID.',
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* group:get */
|
||||
@@ -141,7 +141,7 @@ export const groupFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID.`,
|
||||
description: 'Identifies the group in the API request. The value can be the group\'s email address, group alias, or the unique group ID.',
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* group:getAll */
|
||||
@@ -161,7 +161,7 @@ export const groupFields: 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',
|
||||
@@ -185,7 +185,7 @@ export const groupFields: INodeProperties[] = [
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
@@ -229,7 +229,7 @@ export const groupFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
description: 'Property to use for sorting results.',
|
||||
description: 'Property to use for sorting results',
|
||||
},
|
||||
{
|
||||
displayName: 'Query',
|
||||
@@ -260,7 +260,7 @@ export const groupFields: INodeProperties[] = [
|
||||
name: 'userId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `Email or immutable ID of the user if only those groups are to be listed, the given user is a member of. If it's an ID, it should match with the ID of the user object.`,
|
||||
description: 'Email or immutable ID of the user if only those groups are to be listed, the given user is a member of. If it\'s an ID, it should match with the ID of the user object.',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -283,7 +283,7 @@ export const groupFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID.`,
|
||||
description: 'Identifies the group in the API request. The value can be the group\'s email address, group alias, or the unique group ID.',
|
||||
},
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
@@ -314,14 +314,14 @@ export const groupFields: INodeProperties[] = [
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The group's email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique.`,
|
||||
description: 'The group\'s email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique.',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `The group's display name`,
|
||||
description: 'The group\'s display name',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user