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:
@@ -88,7 +88,7 @@ export class Pushover implements INodeType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `The user/group key (not e-mail address) of your user (or you), viewable when logged into the <a href="https://pushover.net/">dashboard</a> (often referred to as <code>USER_KEY</code> in the <a href="https://support.pushover.net/i44-example-code-and-pushover-libraries">libraries</a> and code examples)`,
|
||||
description: 'The user/group key (not e-mail address) of your user (or you), viewable when logged into the <a href="https://pushover.net/">dashboard</a> (often referred to as <code>USER_KEY</code> in the <a href="https://support.pushover.net/i44-example-code-and-pushover-libraries">libraries</a> and code examples)',
|
||||
},
|
||||
{
|
||||
displayName: 'Message',
|
||||
@@ -106,7 +106,7 @@ export class Pushover implements INodeType {
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: `Your message`,
|
||||
description: 'Your message',
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export class Pushover implements INodeType {
|
||||
},
|
||||
],
|
||||
default: -2,
|
||||
description: `Send as -2 to generate no notification/alert, -1 to always send as a quiet notification, 1 to display as high-priority and bypass the user's quiet hours, or 2 to also require confirmation from the user`,
|
||||
description: 'Send as -2 to generate no notification/alert, -1 to always send as a quiet notification, 1 to display as high-priority and bypass the user\'s quiet hours, or 2 to also require confirmation from the user',
|
||||
},
|
||||
{
|
||||
displayName: 'Retry (seconds)',
|
||||
@@ -170,7 +170,7 @@ export class Pushover implements INodeType {
|
||||
},
|
||||
},
|
||||
default: 30,
|
||||
description: `Specifies how often (in seconds) the Pushover servers will send the same notification to the user. This parameter must have a value of at least 30 seconds between retries.`,
|
||||
description: 'Specifies how often (in seconds) the Pushover servers will send the same notification to the user. This parameter must have a value of at least 30 seconds between retries.',
|
||||
},
|
||||
{
|
||||
displayName: 'Expire (seconds)',
|
||||
@@ -195,7 +195,7 @@ export class Pushover implements INodeType {
|
||||
},
|
||||
},
|
||||
default: 30,
|
||||
description: `Specifies how many seconds your notification will continue to be retried for (every retry seconds)`,
|
||||
description: 'Specifies how many seconds your notification will continue to be retried for (every retry seconds)',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
@@ -245,7 +245,7 @@ export class Pushover implements INodeType {
|
||||
name: 'device',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `Your user's device name to send the message directly to that device, rather than all of the user's devices (multiple devices may be separated by a comma)`,
|
||||
description: 'Your user\'s device name to send the message directly to that device, rather than all of the user\'s devices (multiple devices may be separated by a comma)',
|
||||
},
|
||||
{
|
||||
displayName: 'Sound',
|
||||
@@ -255,35 +255,35 @@ export class Pushover implements INodeType {
|
||||
loadOptionsMethod: 'getSounds',
|
||||
},
|
||||
default: '',
|
||||
description: `The name of one of the sounds supported by device clients to override the user's default sound choice`,
|
||||
description: 'The name of one of the sounds supported by device clients to override the user\'s default sound choice',
|
||||
},
|
||||
{
|
||||
displayName: 'Title',
|
||||
name: 'title',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `Your message's title, otherwise your app's name is used`,
|
||||
description: 'Your message\'s title, otherwise your app\'s name is used',
|
||||
},
|
||||
{
|
||||
displayName: 'Timestamp',
|
||||
name: 'timestamp',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: `A Unix timestamp of your message's date and time to display to the user, rather than the time your message is received by our API`,
|
||||
description: 'A Unix timestamp of your message\'s date and time to display to the user, rather than the time your message is received by our API',
|
||||
},
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `a supplementary URL to show with your message`,
|
||||
description: 'a supplementary URL to show with your message',
|
||||
},
|
||||
{
|
||||
displayName: 'URL Title',
|
||||
name: 'url_title',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: `A title for your supplementary URL, otherwise just the URL is shown`,
|
||||
description: 'A title for your supplementary URL, otherwise just the URL is shown',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user