refactor: Phase out TSLint in nodes-base (no-changelog) (#4798)

* 🔥 Remove TSLint scripts

* 🔥 Remove TSLint config

* 🔥 Remove TSLint exceptions

* 👕 Adjust lint config

* ✏️ Add story numbers
This commit is contained in:
Iván Ovejero
2022-12-02 15:25:21 +01:00
committed by GitHub
parent 632f573021
commit cfd32d2642
272 changed files with 367 additions and 926 deletions

View File

@@ -188,7 +188,7 @@ export class Stackby implements INodeType {
responseData = await apiRequest.call(this, 'GET', `/rowlist/${stackId}/${table}`, {}, qs);
returnData.push.apply(
returnData,
// tslint:disable-next-line:no-any
responseData.map((data: any) => data.field),
);
} catch (error) {
@@ -251,7 +251,6 @@ export class Stackby implements INodeType {
const columns = this.getNodeParameter('columns', i) as string;
const columnList = columns.split(',').map((column) => column.trim());
// tslint:disable-next-line: no-any
const record: { [key: string]: any } = {};
for (const column of columnList) {
if (items[i].json[column] === undefined) {
@@ -280,7 +279,7 @@ export class Stackby implements INodeType {
returnData.push.apply(
returnData,
// tslint:disable-next-line:no-any
responseData.map((data: any) => data.field),
);
} catch (error) {
@@ -330,7 +329,7 @@ export class Stackby implements INodeType {
returnData.push.apply(
returnData,
// tslint:disable-next-line:no-any
responseData.map((data: any) => data.field),
);
} catch (error) {