👕 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

@@ -17,7 +17,7 @@ export async function microsoftApiRequest(this: IExecuteFunctions | IExecuteSing
body,
qs,
uri: uri || `https://graph.microsoft.com/v1.0/me${resource}`,
json: true
json: true,
};
try {
if (Object.keys(headers).length !== 0) {

View File

@@ -146,7 +146,7 @@ export class MicrosoftExcel implements INodeType {
}
return returnData;
},
}
},
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {

View File

@@ -16,7 +16,7 @@ export const tableOperations = [
{
name: 'Add Row',
value: 'addRow',
description: 'Adds rows to the end of the table'
description: 'Adds rows to the end of the table',
},
{
name: 'Get Columns',
@@ -31,7 +31,7 @@ export const tableOperations = [
{
name: 'Lookup',
value: 'lookup',
description: 'Looks for a specific column value and then returns the matching row'
description: 'Looks for a specific column value and then returns the matching row',
},
],
default: 'addRow',
@@ -273,7 +273,7 @@ export const tableFields = [
displayOptions: {
show: {
operation: [
'getRows'
'getRows',
],
resource: [
'table',
@@ -312,7 +312,7 @@ export const tableFields = [
default: '',
description: `Fields the response will containt. Multiple can be added separated by ,.`,
},
]
],
},
/* -------------------------------------------------------------------------- */
/* table:getColumns */
@@ -448,7 +448,7 @@ export const tableFields = [
displayOptions: {
show: {
operation: [
'getColumns'
'getColumns',
],
resource: [
'table',
@@ -475,7 +475,7 @@ export const tableFields = [
'table',
],
rawData: [
true
true,
],
},
},
@@ -487,7 +487,7 @@ export const tableFields = [
default: '',
description: `Fields the response will containt. Multiple can be added separated by ,.`,
},
]
],
},
/* -------------------------------------------------------------------------- */
/* table:lookup */
@@ -571,7 +571,7 @@ export const tableFields = [
'table',
],
operation: [
'lookup'
'lookup',
],
},
},
@@ -590,7 +590,7 @@ export const tableFields = [
'table',
],
operation: [
'lookup'
'lookup',
],
},
},
@@ -621,5 +621,5 @@ export const tableFields = [
description: 'By default only the first result gets returned. If options gets set all found matches get returned.',
},
],
}
},
] as INodeProperties[];

View File

@@ -79,7 +79,7 @@ export const workbookFields = [
description: `The name of the worksheet to be added. If specified, name should be unqiue. </BR>
If not specified, Excel determines the name of the new worksheet.`,
},
]
],
},
/* -------------------------------------------------------------------------- */
/* workbook:getAll */
@@ -149,6 +149,6 @@ export const workbookFields = [
default: '',
description: `Fields the response will containt. Multiple can be added separated by ,.`,
},
]
],
},
] as INodeProperties[];

View File

@@ -118,7 +118,7 @@ export const worksheetFields = [
default: '',
description: `Fields the response will containt. Multiple can be added separated by ,.`,
},
]
],
},
/* -------------------------------------------------------------------------- */
/* worksheet:getContent */
@@ -209,7 +209,7 @@ export const worksheetFields = [
displayOptions: {
show: {
operation: [
'getContent'
'getContent',
],
resource: [
'worksheet',
@@ -240,7 +240,7 @@ export const worksheetFields = [
},
hide: {
rawData: [
true
true,
],
},
},
@@ -264,7 +264,7 @@ export const worksheetFields = [
},
hide: {
rawData: [
true
true,
],
},
},
@@ -298,6 +298,6 @@ export const worksheetFields = [
default: '',
description: `Fields the response will containt. Multiple can be added separated by ,.`,
},
]
],
},
] as INodeProperties[];