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:
@@ -79,7 +79,7 @@ export class Git implements INodeType {
|
||||
},
|
||||
},
|
||||
default: 'none',
|
||||
description: 'The way to authenticate.',
|
||||
description: 'The way to authenticate',
|
||||
},
|
||||
{
|
||||
displayName: 'Operation',
|
||||
@@ -170,7 +170,7 @@ export class Git implements INodeType {
|
||||
default: '',
|
||||
placeholder: '/tmp/repository',
|
||||
required: true,
|
||||
description: 'Local path of the git repository to operate on.',
|
||||
description: 'Local path of the git repository to operate on',
|
||||
},
|
||||
{
|
||||
displayName: 'New Repository Path',
|
||||
@@ -186,7 +186,7 @@ export class Git implements INodeType {
|
||||
default: '',
|
||||
placeholder: '/tmp/repository',
|
||||
required: true,
|
||||
description: 'Local path to which the git repository should be cloned into.',
|
||||
description: 'Local path to which the git repository should be cloned into',
|
||||
},
|
||||
|
||||
...addFields,
|
||||
|
||||
@@ -16,7 +16,7 @@ export const addConfigFields: INodeProperties[] = [
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'user.email',
|
||||
description: 'Name of the key to set.',
|
||||
description: 'Name of the key to set',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -32,7 +32,7 @@ export const addConfigFields: INodeProperties[] = [
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'name@example.com',
|
||||
description: 'Value of the key to set.',
|
||||
description: 'Value of the key to set',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
@@ -64,7 +64,7 @@ export const addConfigFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'set',
|
||||
description: 'Append setting rather than set it in the local config.',
|
||||
description: 'Append setting rather than set it in the local config',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -16,7 +16,7 @@ export const addFields: INodeProperties[] = [
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'README.md',
|
||||
description: 'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add.',
|
||||
description: 'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -16,7 +16,7 @@ export const cloneFields: INodeProperties[] = [
|
||||
},
|
||||
default: '',
|
||||
placeholder: 'https://github.com/n8n-io/n8n',
|
||||
description: 'The URL or path of the repository to clone.',
|
||||
description: 'The URL or path of the repository to clone',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -15,7 +15,7 @@ export const commitFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The commit message to use.',
|
||||
description: 'The commit message to use',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
|
||||
@@ -15,7 +15,7 @@ export const logFields: 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',
|
||||
@@ -36,7 +36,7 @@ export const logFields: INodeProperties[] = [
|
||||
maxValue: 100,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
@@ -57,7 +57,7 @@ export const logFields: INodeProperties[] = [
|
||||
name: 'file',
|
||||
type: 'string',
|
||||
default: 'README.md',
|
||||
description: 'The path (absolute or relative to Repository Path) of file or folder to get the history of.',
|
||||
description: 'The path (absolute or relative to Repository Path) of file or folder to get the history of',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -23,7 +23,7 @@ export const pushFields: INodeProperties[] = [
|
||||
type: 'string',
|
||||
default: '',
|
||||
placeholder: 'https://github.com/n8n-io/n8n',
|
||||
description: 'The URL or path of the repository to push to.',
|
||||
description: 'The URL or path of the repository to push to',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -15,7 +15,7 @@ export const tagFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'The name of the tag to create.',
|
||||
description: 'The name of the tag to create',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user