refactor(core): Enable import/order eslint rule (#10794)

This commit is contained in:
Tomi Turtiainen
2024-09-12 19:07:18 +03:00
committed by GitHub
parent 6530620e9d
commit 5156313074
569 changed files with 3019 additions and 2523 deletions

View File

@@ -1,25 +1,25 @@
import { readFileSync } from 'fs';
import { agent as testAgent } from 'supertest';
import {
NodeConnectionType,
type INodeType,
type INodeTypeDescription,
type IWebhookFunctions,
} from 'n8n-workflow';
import { agent as testAgent } from 'supertest';
import { AbstractServer } from '@/abstract-server';
import type { WorkflowEntity } from '@/databases/entities/workflow-entity';
import { ExternalHooks } from '@/external-hooks';
import { NodeTypes } from '@/node-types';
import { Push } from '@/push';
import type { WorkflowEntity } from '@/databases/entities/workflow-entity';
import { Telemetry } from '@/telemetry';
import { mockInstance } from '../shared/mocking';
import { initActiveWorkflowManager } from './shared/utils';
import * as testDb from './shared/test-db';
import { createUser } from './shared/db/users';
import { createWorkflow } from './shared/db/workflows';
import * as testDb from './shared/test-db';
import type { SuperAgentTest } from './shared/types';
import { Telemetry } from '@/telemetry';
import { initActiveWorkflowManager } from './shared/utils';
import { mockInstance } from '../shared/mocking';
mockInstance(Telemetry);