mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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:
@@ -20,62 +20,62 @@ const GITLAB_EVENTS = [
|
||||
{
|
||||
name: 'Comment',
|
||||
value: 'note',
|
||||
description: 'Triggered when a new comment is made on commits, merge requests, issues, and code snippets.',
|
||||
description: 'Triggered when a new comment is made on commits, merge requests, issues, and code snippets',
|
||||
},
|
||||
{
|
||||
name: 'Confidential Issues',
|
||||
value: 'confidential_issues',
|
||||
description: 'Triggered on confidential issues\' events.',
|
||||
description: 'Triggered on confidential issues\' events',
|
||||
},
|
||||
{
|
||||
name: 'Confidential Comments',
|
||||
value: 'confidential_note',
|
||||
description: 'Triggered when a confidential comment is made.',
|
||||
description: 'Triggered when a confidential comment is made',
|
||||
},
|
||||
{
|
||||
name: 'Deployments',
|
||||
value: 'deployment',
|
||||
description: 'Triggered when a deployment starts/succeeds/fails/is cancelled.',
|
||||
description: 'Triggered when a deployment starts/succeeds/fails/is cancelled',
|
||||
},
|
||||
{
|
||||
name: 'Issue',
|
||||
value: 'issues',
|
||||
description: 'Triggered when a new issue is created or an existing issue was updated/closed/reopened.',
|
||||
description: 'Triggered when a new issue is created or an existing issue was updated/closed/reopened',
|
||||
},
|
||||
{
|
||||
name: 'Job',
|
||||
value: 'job',
|
||||
description: 'Triggered on status change of a job.',
|
||||
description: 'Triggered on status change of a job',
|
||||
},
|
||||
{
|
||||
name: 'Merge Request',
|
||||
value: 'merge_requests',
|
||||
description: 'Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch.',
|
||||
description: 'Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch',
|
||||
},
|
||||
{
|
||||
name: 'Pipeline',
|
||||
value: 'pipeline',
|
||||
description: 'Triggered on status change of Pipeline.',
|
||||
description: 'Triggered on status change of Pipeline',
|
||||
},
|
||||
{
|
||||
name: 'Push',
|
||||
value: 'push',
|
||||
description: 'Triggered when you push to the repository except when pushing tags.',
|
||||
description: 'Triggered when you push to the repository except when pushing tags',
|
||||
},
|
||||
{
|
||||
name: 'Release',
|
||||
value: 'releases',
|
||||
description: 'Release events are triggered when a release is created or updated.',
|
||||
description: 'Release events are triggered when a release is created or updated',
|
||||
},
|
||||
{
|
||||
name: 'Tag',
|
||||
value: 'tag_push',
|
||||
description: 'Triggered when you create (or delete) tags to the repository.',
|
||||
description: 'Triggered when you create (or delete) tags to the repository',
|
||||
},
|
||||
{
|
||||
name: 'Wiki Page',
|
||||
value: 'wiki_page',
|
||||
description: 'Triggered when a wiki page is created, updated or deleted.',
|
||||
description: 'Triggered when a wiki page is created, updated or deleted',
|
||||
},
|
||||
];
|
||||
|
||||
@@ -150,7 +150,7 @@ export class GitlabTrigger implements INodeType {
|
||||
default: '',
|
||||
required: true,
|
||||
placeholder: 'n8n-io',
|
||||
description: 'Owner of the repsitory.',
|
||||
description: 'Owner of the repsitory',
|
||||
},
|
||||
{
|
||||
displayName: 'Repository Name',
|
||||
@@ -159,7 +159,7 @@ export class GitlabTrigger implements INodeType {
|
||||
default: '',
|
||||
required: true,
|
||||
placeholder: 'n8n',
|
||||
description: 'The name of the repsitory.',
|
||||
description: 'The name of the repsitory',
|
||||
},
|
||||
{
|
||||
displayName: 'Events',
|
||||
@@ -170,12 +170,12 @@ export class GitlabTrigger implements INodeType {
|
||||
{
|
||||
name: '*',
|
||||
value: '*',
|
||||
description: 'Any time any event is triggered (Wildcard Event).',
|
||||
description: 'Any time any event is triggered (Wildcard Event)',
|
||||
},
|
||||
],
|
||||
required: true,
|
||||
default: [],
|
||||
description: 'The events to listen to.',
|
||||
description: 'The events to listen to',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user