mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +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:
@@ -176,8 +176,7 @@ export class Markdown implements INodeType {
|
||||
name: 'keepDataImages',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether to keep images with data: URI (Note: These can be up to 1MB each), e.g. <img src="data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSK......0o/">.',
|
||||
description: 'Whether to keep images with data: URI (Note: These can be up to 1MB each), e.g. <img src="data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSK......0o/">',
|
||||
},
|
||||
{
|
||||
displayName: 'Line Start Escape Pattern',
|
||||
@@ -330,22 +329,21 @@ export class Markdown implements INodeType {
|
||||
name: 'backslashEscapesHTMLTags',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to support for HTML Tag escaping ex: <div>foo</div',
|
||||
description: 'Whether to support for HTML Tag escaping ex: <div>foo</div>',
|
||||
},
|
||||
{
|
||||
displayName: 'Complete HTML Document',
|
||||
name: 'completeHTMLDocument',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether to output a complete html document, including <html>, <head> and <body> tags instead of an HTML fragment',
|
||||
description: 'Whether to output a complete html document, including <html>, <head> and <body> tags instead of an HTML fragment',
|
||||
},
|
||||
{
|
||||
displayName: 'Customized Header ID',
|
||||
name: 'customizedHeaderId',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to use text in curly braces as header id',
|
||||
description: 'Whether to use text in curly braces as header ID',
|
||||
},
|
||||
{
|
||||
displayName: 'Emoji Support',
|
||||
@@ -383,8 +381,7 @@ export class Markdown implements INodeType {
|
||||
name: 'ghCompatibleHeaderId',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether to generate header ids compatible with github style (spaces are replaced with dashes and a bunch of non alphanumeric chars are removed)',
|
||||
description: 'Whether to generate header IDs compatible with github style (spaces are replaced with dashes and a bunch of non alphanumeric chars are removed)',
|
||||
},
|
||||
{
|
||||
displayName: 'GitHub Mention Link',
|
||||
@@ -443,7 +440,7 @@ export class Markdown implements INodeType {
|
||||
name: 'noHeaderId',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to disable the automatic generation of header ids',
|
||||
description: 'Whether to disable the automatic generation of header IDs',
|
||||
},
|
||||
{
|
||||
displayName: 'Parse Image Dimensions',
|
||||
@@ -458,15 +455,14 @@ export class Markdown implements INodeType {
|
||||
name: 'prefixHeaderId',
|
||||
type: 'string',
|
||||
default: 'section',
|
||||
description: 'Add a prefix to the generated header ids',
|
||||
description: 'Add a prefix to the generated header IDs',
|
||||
},
|
||||
{
|
||||
displayName: 'Raw Header ID',
|
||||
name: 'rawHeaderId',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description:
|
||||
'Whether to remove only spaces, \' and " from generated header ids (including prefixes), replacing them with dashes (-)',
|
||||
description: 'Whether to remove only spaces, \' and " from generated header IDs (including prefixes), replacing them with dashes (-)',
|
||||
},
|
||||
{
|
||||
displayName: 'Raw Prefix Header ID',
|
||||
|
||||
Reference in New Issue
Block a user