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:
@@ -81,7 +81,6 @@ export class Signl4 implements INodeType {
|
||||
alwaysOpenEditWindow: true,
|
||||
},
|
||||
default: '',
|
||||
required: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
@@ -92,7 +91,7 @@ export class Signl4 implements INodeType {
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'A more detailed description for the alert.',
|
||||
description: 'A more detailed description for the alert',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -119,7 +118,7 @@ export class Signl4 implements INodeType {
|
||||
{
|
||||
name: 'Single ACK',
|
||||
value: 'single_ack',
|
||||
description: 'In case only one person needs to confirm this Signl.',
|
||||
description: 'In case only one person needs to confirm this Signl',
|
||||
},
|
||||
{
|
||||
name: 'Multi ACK',
|
||||
@@ -128,7 +127,6 @@ export class Signl4 implements INodeType {
|
||||
},
|
||||
],
|
||||
default: 'single_ack',
|
||||
required: false,
|
||||
},
|
||||
{
|
||||
displayName: 'Attachments',
|
||||
@@ -161,14 +159,14 @@ export class Signl4 implements INodeType {
|
||||
name: 'externalId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `If the event originates from a record in a 3rd party system, use this parameter to pass the unique ID of that record. That ID will be communicated in outbound webhook notifications from SIGNL4, which is great for correlation/synchronization of that record with the alert. If you resolve / close an alert you must use the same External ID as in the original alert.`,
|
||||
description: 'If the event originates from a record in a 3rd party system, use this parameter to pass the unique ID of that record. That ID will be communicated in outbound webhook notifications from SIGNL4, which is great for correlation/synchronization of that record with the alert. If you resolve / close an alert you must use the same External ID as in the original alert.',
|
||||
},
|
||||
{
|
||||
displayName: 'Filtering',
|
||||
name: 'filtering',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: `Specify a boolean value of true or false to apply event filtering for this event, or not. If set to true, the event will only trigger a notification to the team, if it contains at least one keyword from one of your services and system categories (i.e. it is whitelisted)`,
|
||||
description: 'Specify a boolean value of true or false to apply event filtering for this event, or not. If set to true, the event will only trigger a notification to the team, if it contains at least one keyword from one of your services and system categories (i.e. it is whitelisted)',
|
||||
},
|
||||
{
|
||||
displayName: 'Location',
|
||||
@@ -176,7 +174,7 @@ export class Signl4 implements INodeType {
|
||||
type: 'fixedCollection',
|
||||
placeholder: 'Add Location',
|
||||
default: {},
|
||||
description: 'Transmit location information (\'latitude, longitude\') with your event and display a map in the mobile app.',
|
||||
description: 'Transmit location information (\'latitude, longitude\') with your event and display a map in the mobile app',
|
||||
options: [
|
||||
{
|
||||
name: 'locationFieldsValues',
|
||||
@@ -187,7 +185,7 @@ export class Signl4 implements INodeType {
|
||||
name: 'latitude',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'The location latitude.',
|
||||
description: 'The location latitude',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
@@ -195,7 +193,7 @@ export class Signl4 implements INodeType {
|
||||
name: 'longitude',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'The location longitude.',
|
||||
description: 'The location longitude',
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
@@ -207,14 +205,14 @@ export class Signl4 implements INodeType {
|
||||
name: 'service',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Assigns the alert to the service/system category with the specified name.',
|
||||
description: 'Assigns the alert to the service/system category with the specified name',
|
||||
},
|
||||
{
|
||||
displayName: 'Title',
|
||||
name: 'title',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The title or subject of this alert.',
|
||||
description: 'The title or subject of this alert',
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -223,7 +221,6 @@ export class Signl4 implements INodeType {
|
||||
name: 'externalId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
|
||||
Reference in New Issue
Block a user