refactor: Impose import/order linting rule across nodes packages (no-changelog) (#12314)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-12-19 18:46:14 +01:00
committed by GitHub
parent 8c635993bd
commit bafac73eb5
1120 changed files with 2677 additions and 2827 deletions

View File

@@ -9,10 +9,6 @@ import type {
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
import type { TDtableMetadataColumns, TDtableViewColumns, TEndpointVariableName } from './types';
import { schema } from './Schema';
import type {
ICredential,
ICtx,
@@ -22,6 +18,8 @@ import type {
IRow,
IRowObject,
} from './Interfaces';
import { schema } from './Schema';
import type { TDtableMetadataColumns, TDtableViewColumns, TEndpointVariableName } from './types';
const userBaseUri = (uri?: string) => {
if (uri === undefined) {

View File

@@ -20,12 +20,9 @@ import {
split,
updateAble,
} from './GenericFunctions';
import { rowFields, rowOperations } from './RowDescription';
import type { TColumnsUiValues, TColumnValue } from './types';
import type { ICtx, IRow, IRowObject } from './Interfaces';
import { rowFields, rowOperations } from './RowDescription';
import type { TColumnsUiValues, TColumnValue } from './types';
export class SeaTable implements INodeType {
description: INodeTypeDescription = {

View File

@@ -1,3 +1,4 @@
import moment from 'moment-timezone';
import {
type IPollFunctions,
type ILoadOptionsFunctions,
@@ -8,9 +9,7 @@ import {
NodeConnectionType,
} from 'n8n-workflow';
import moment from 'moment-timezone';
import { getColumns, rowFormatColumns, seaTableApiRequest, simplify } from './GenericFunctions';
import type { ICtx, IRow, IRowResponse } from './Interfaces';
export class SeaTableTrigger implements INodeType {

View File

@@ -10,6 +10,7 @@ export type TSeaTableServerEdition = 'enterprise edition';
// ----------------------------------
import type { ICredentialDataDecryptedObject } from 'n8n-workflow';
import type { IDtableMetadataColumn, IDtableMetadataTable, TDtableViewColumn } from './Interfaces';
export type TInheritColumnTypeTime = 'ctime' | 'mtime';