👕 Fix lint issue

This commit is contained in:
Jan Oberhauser
2020-10-22 15:46:03 +02:00
parent 5b7efd67ca
commit 40c2acd77b
491 changed files with 4045 additions and 3936 deletions

View File

@@ -96,15 +96,15 @@ export class Webhook implements INodeType {
options: [
{
name: 'Basic Auth',
value: 'basicAuth'
value: 'basicAuth',
},
{
name: 'Header Auth',
value: 'headerAuth'
value: 'headerAuth',
},
{
name: 'None',
value: 'none'
value: 'none',
},
],
default: 'none',
@@ -206,7 +206,7 @@ export class Webhook implements INodeType {
displayOptions: {
show: {
responseData: [
'firstEntryBinary'
'firstEntryBinary',
],
},
},
@@ -297,7 +297,7 @@ export class Webhook implements INodeType {
default: '',
description: 'Value of the header.',
},
]
],
},
],
},
@@ -418,7 +418,7 @@ export class Webhook implements INodeType {
workflowData: [
[
returnItem,
]
],
],
});
});
@@ -450,8 +450,8 @@ export class Webhook implements INodeType {
return resolve({
workflowData: [
[
returnItem
]
returnItem,
],
],
});
});
@@ -476,7 +476,7 @@ export class Webhook implements INodeType {
// @ts-ignore
data: req.rawBody.toString(BINARY_ENCODING),
mimeType,
}
},
};
}