mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
👕 Add exceptions
This commit is contained in:
parent
1ef041dbe2
commit
9eff934f4d
|
@ -50,11 +50,11 @@ export class ClockifyTrigger implements INodeType {
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||||
{
|
{
|
||||||
displayName: 'Trigger',
|
displayName: 'Trigger',
|
||||||
name: 'watchField',
|
name: 'watchField',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: '',
|
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'New Time Entry',
|
name: 'New Time Entry',
|
||||||
|
|
|
@ -136,11 +136,11 @@ export class LocalFileTrigger implements INodeType {
|
||||||
placeholder: '**/*.txt',
|
placeholder: '**/*.txt',
|
||||||
description: 'Files or paths to ignore. The whole path is tested, not just the filename. Supports <a href="https://github.com/micromatch/anymatch">Anymatch</a>- syntax.',
|
description: 'Files or paths to ignore. The whole path is tested, not just the filename. Supports <a href="https://github.com/micromatch/anymatch">Anymatch</a>- syntax.',
|
||||||
},
|
},
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||||
{
|
{
|
||||||
displayName: 'Max Folder Depth',
|
displayName: 'Max Folder Depth',
|
||||||
name: 'depth',
|
name: 'depth',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: '-1',
|
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Unlimited',
|
name: 'Unlimited',
|
||||||
|
|
|
@ -108,11 +108,11 @@ export class Pushover implements INodeType {
|
||||||
default: '',
|
default: '',
|
||||||
description: `Your message`,
|
description: `Your message`,
|
||||||
},
|
},
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||||
{
|
{
|
||||||
displayName: 'Priority',
|
displayName: 'Priority',
|
||||||
name: 'priority',
|
name: 'priority',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: '-2',
|
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
|
|
|
@ -518,11 +518,11 @@ export class Switch implements INodeType {
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||||||
{
|
{
|
||||||
displayName: 'Fallback Output',
|
displayName: 'Fallback Output',
|
||||||
name: 'fallbackOutput',
|
name: 'fallbackOutput',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
default: '-1',
|
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
mode: [
|
mode: [
|
||||||
|
|
Loading…
Reference in a new issue