mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
👕 Apply node-param-default-wrong-for-simplify
(#3187)
This commit is contained in:
parent
5914ed9401
commit
e04d74d4c8
|
@ -385,6 +385,7 @@ module.exports = {
|
|||
"n8n-nodes-base/node-param-collection-type-unsorted-items": "error",
|
||||
"n8n-nodes-base/node-param-default-wrong-for-fixed-collection": "error",
|
||||
"n8n-nodes-base/node-param-default-wrong-for-multi-options": "error",
|
||||
"n8n-nodes-base/node-param-default-wrong-for-simplify": "error",
|
||||
}
|
||||
},
|
||||
],
|
||||
|
|
|
@ -183,6 +183,7 @@ export const companyFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description: 'Return a simplified version of the response instead of the raw data.',
|
||||
},
|
||||
|
|
|
@ -183,6 +183,7 @@ export const contactFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description: 'Return a simplified version of the response instead of the raw data.',
|
||||
},
|
||||
|
|
|
@ -121,6 +121,7 @@ export class Dropcontact implements INodeType {
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description: 'When off, waits for the contact data before completing. Waiting time can be adjusted with Extend Wait Time option. When on, returns a request_id that can be used later in the Fetch Request operation.',
|
||||
},
|
||||
|
|
|
@ -545,6 +545,7 @@ export const issueFields: INodeProperties[] = [
|
|||
],
|
||||
},
|
||||
},
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description: `Return a simplified output of the issues fields.`,
|
||||
},
|
||||
|
|
|
@ -321,6 +321,7 @@ export class Markdown implements INodeType {
|
|||
displayName: 'Automatic Linking To URLs',
|
||||
name: 'simplifiedAutoLink',
|
||||
type: 'boolean',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description: 'Whether to enable automatic linking to urls',
|
||||
},
|
||||
|
@ -478,6 +479,7 @@ export class Markdown implements INodeType {
|
|||
displayName: 'Simple Line Breaks',
|
||||
name: 'simpleLineBreaks',
|
||||
type: 'boolean',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
|
||||
default: false,
|
||||
description:
|
||||
'Whether to parse line breaks as <br>, like GitHub does, without needing 2 spaces at the end of the line',
|
||||
|
|
Loading…
Reference in a new issue