mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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:
@@ -69,7 +69,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'The slug of the organization the releases belong to.',
|
||||
description: 'The slug of the organization the releases belong to',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
@@ -86,7 +86,7 @@ export const releaseFields: 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',
|
||||
@@ -110,7 +110,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -134,7 +134,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'query',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'This parameter can be used to create a “starts with” filter for the version.',
|
||||
description: 'This parameter can be used to create a “starts with” filter for the version',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -162,7 +162,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'The slug of the organization the release belongs to.',
|
||||
description: 'The slug of the organization the release belongs to',
|
||||
},
|
||||
{
|
||||
displayName: 'Version',
|
||||
@@ -181,7 +181,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'The version identifier of the release.',
|
||||
description: 'The version identifier of the release',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -206,7 +206,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'The slug of the organization the release belongs to.',
|
||||
description: 'The slug of the organization the release belongs to',
|
||||
},
|
||||
{
|
||||
displayName: 'Version',
|
||||
@@ -263,7 +263,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'A list of project slugs that are involved in this release.',
|
||||
description: 'A list of project slugs that are involved in this release',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -292,7 +292,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Commits',
|
||||
name: 'commits',
|
||||
description: 'An optional list of commit data to be associated with the release.',
|
||||
description: 'An optional list of commit data to be associated with the release',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
@@ -308,7 +308,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The sha of the commit.',
|
||||
description: 'The sha of the commit',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -316,21 +316,21 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'authorEmail',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Authors email.',
|
||||
description: 'Authors email',
|
||||
},
|
||||
{
|
||||
displayName: 'Author Name',
|
||||
name: 'authorName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name of author.',
|
||||
description: 'Name of author',
|
||||
},
|
||||
{
|
||||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Message of commit.',
|
||||
description: 'Message of commit',
|
||||
},
|
||||
{
|
||||
displayName: 'Patch Set',
|
||||
@@ -359,7 +359,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'The types of changes that happend in that commit.',
|
||||
description: 'The types of changes that happend in that commit',
|
||||
options: [
|
||||
{
|
||||
name: 'Add',
|
||||
@@ -384,14 +384,14 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'repository',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Repository name.',
|
||||
description: 'Repository name',
|
||||
},
|
||||
{
|
||||
displayName: 'Timestamp',
|
||||
name: 'timestamp',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Timestamp of commit.',
|
||||
description: 'Timestamp of commit',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -400,7 +400,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Refs',
|
||||
name: 'refs',
|
||||
description: 'An optional way to indicate the start and end commits for each repository included in a release.',
|
||||
description: 'An optional way to indicate the start and end commits for each repository included in a release',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
@@ -416,7 +416,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'commit',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The head sha of the commit.',
|
||||
description: 'The head sha of the commit',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -424,7 +424,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'repository',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Repository name.',
|
||||
description: 'Repository name',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -432,7 +432,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'previousCommit',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The sha of the HEAD of the previous release.',
|
||||
description: 'The sha of the HEAD of the previous release',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -463,7 +463,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
required: true,
|
||||
description: 'The slug of the organization the release belongs to.',
|
||||
description: 'The slug of the organization the release belongs to',
|
||||
},
|
||||
{
|
||||
displayName: 'Version',
|
||||
@@ -503,7 +503,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Commits',
|
||||
name: 'commits',
|
||||
description: 'An optional list of commit data to be associated with the release.',
|
||||
description: 'An optional list of commit data to be associated with the release',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
@@ -519,7 +519,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The sha of the commit.',
|
||||
description: 'The sha of the commit',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -527,21 +527,21 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'authorEmail',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Authors email.',
|
||||
description: 'Authors email',
|
||||
},
|
||||
{
|
||||
displayName: 'Author Name',
|
||||
name: 'authorName',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name of author.',
|
||||
description: 'Name of author',
|
||||
},
|
||||
{
|
||||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Message of commit.',
|
||||
description: 'Message of commit',
|
||||
},
|
||||
{
|
||||
displayName: 'Patch Set',
|
||||
@@ -570,7 +570,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'The types of changes that happend in that commit.',
|
||||
description: 'The types of changes that happend in that commit',
|
||||
options: [
|
||||
{
|
||||
name: 'Add',
|
||||
@@ -595,14 +595,14 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'repository',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Repository name.',
|
||||
description: 'Repository name',
|
||||
},
|
||||
{
|
||||
displayName: 'Timestamp',
|
||||
name: 'timestamp',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'Timestamp of commit.',
|
||||
description: 'Timestamp of commit',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -625,7 +625,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Refs',
|
||||
name: 'refs',
|
||||
description: 'An optional way to indicate the start and end commits for each repository included in a release.',
|
||||
description: 'An optional way to indicate the start and end commits for each repository included in a release',
|
||||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
@@ -641,7 +641,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'commit',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The head sha of the commit.',
|
||||
description: 'The head sha of the commit',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -649,7 +649,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'repository',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Repository name.',
|
||||
description: 'Repository name',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -657,7 +657,7 @@ export const releaseFields: INodeProperties[] = [
|
||||
name: 'previousCommit',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The sha of the HEAD of the previous release.',
|
||||
description: 'The sha of the HEAD of the previous release',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user