👕 Apply node-param-default-wrong-for-simplify (#3187)

This commit is contained in:
Omar Ajoue 2022-04-22 15:42:57 +02:00 committed by GitHub
parent 5914ed9401
commit e04d74d4c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 0 deletions

View file

@ -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",
}
},
],

View file

@ -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.',
},

View file

@ -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.',
},

View file

@ -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.',
},

View file

@ -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.`,
},

View file

@ -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',