👕 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

@@ -40,17 +40,17 @@ export class Crypto implements INodeType {
{
name: 'Hash',
description: 'Hash a text in a specified format.',
value: 'hash'
value: 'hash',
},
{
name: 'Hmac',
description: 'Hmac a text in a specified format.',
value: 'hmac'
value: 'hmac',
},
{
name: 'Sign',
description: 'Sign a string using a private key.',
value: 'sign'
value: 'sign',
},
],
default: 'hash',
@@ -61,7 +61,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hash'
'hash',
],
},
},
@@ -90,7 +90,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hash'
'hash',
],
},
},
@@ -108,7 +108,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action: [
'hash'
'hash',
],
},
},
@@ -120,7 +120,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hash'
'hash',
],
},
},
@@ -144,7 +144,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hmac'
'hmac',
],
},
},
@@ -173,7 +173,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hmac'
'hmac',
],
},
},
@@ -191,7 +191,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action: [
'hmac'
'hmac',
],
},
},
@@ -203,7 +203,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'hmac'
'hmac',
],
},
},
@@ -241,7 +241,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'sign'
'sign',
],
},
},
@@ -259,7 +259,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action: [
'sign'
'sign',
],
},
},
@@ -312,7 +312,7 @@ export class Crypto implements INodeType {
displayOptions: {
show: {
action:[
'sign'
'sign',
],
},
},
@@ -344,7 +344,7 @@ export class Crypto implements INodeType {
}
return returnData;
},
}
},
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {