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:
@@ -84,14 +84,14 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'assignee_id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'ID of the user who will own the task to create.',
|
||||
description: 'ID of the user who will own the task to create',
|
||||
},
|
||||
{
|
||||
displayName: 'Details',
|
||||
name: 'details',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description of the task to create.',
|
||||
description: 'Description of the task to create',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
@@ -134,7 +134,7 @@ export const taskFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Task ID',
|
||||
name: 'taskId',
|
||||
description: 'ID of the task to delete.',
|
||||
description: 'ID of the task to delete',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
@@ -156,7 +156,7 @@ export const taskFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Task ID',
|
||||
name: 'taskId',
|
||||
description: 'ID of the task to retrieve.',
|
||||
description: 'ID of the task to retrieve',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
@@ -180,7 +180,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'returnAll',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Return all results.',
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
@@ -197,7 +197,7 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'limit',
|
||||
type: 'number',
|
||||
default: 5,
|
||||
description: 'The number of results to return.',
|
||||
description: 'Max number of results to return',
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 1000,
|
||||
@@ -238,14 +238,14 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'assignee_ids',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Comma-separated IDs of assignee IDs to filter by.',
|
||||
description: 'Comma-separated IDs of assignee IDs to filter by',
|
||||
},
|
||||
{
|
||||
displayName: 'Project IDs',
|
||||
name: 'project_ids',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Comma-separated IDs of project IDs to filter by.',
|
||||
description: 'Comma-separated IDs of project IDs to filter by',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -256,7 +256,7 @@ export const taskFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Task ID',
|
||||
name: 'taskId',
|
||||
description: 'ID of the task to update.',
|
||||
description: 'ID of the task to update',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
@@ -293,21 +293,21 @@ export const taskFields: INodeProperties[] = [
|
||||
name: 'assignee_id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'ID of the user who will own the task.',
|
||||
description: 'ID of the user who will own the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Details',
|
||||
name: 'details',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Description to set for the task.',
|
||||
description: 'Description to set for the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Name',
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Name to set for the task.',
|
||||
description: 'Name to set for the task',
|
||||
},
|
||||
{
|
||||
displayName: 'Priority',
|
||||
|
||||
Reference in New Issue
Block a user