mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user