mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
refactor(core): Enable import/order eslint rule (#10794)
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
import { Container, Service } from 'typedi';
|
||||
import { exec as callbackExec } from 'child_process';
|
||||
import { resolve } from 'path';
|
||||
import { access as fsAccess } from 'fs/promises';
|
||||
import { promisify } from 'util';
|
||||
import cookieParser from 'cookie-parser';
|
||||
import express from 'express';
|
||||
import { access as fsAccess } from 'fs/promises';
|
||||
import helmet from 'helmet';
|
||||
import { InstanceSettings } from 'n8n-core';
|
||||
import type { IN8nUISettings } from 'n8n-workflow';
|
||||
import { resolve } from 'path';
|
||||
import { Container, Service } from 'typedi';
|
||||
import { promisify } from 'util';
|
||||
|
||||
import { AbstractServer } from '@/abstract-server';
|
||||
import config from '@/config';
|
||||
|
||||
import {
|
||||
CLI_DIR,
|
||||
EDITOR_UI_DIST_DIR,
|
||||
@@ -20,22 +20,21 @@ import {
|
||||
N8N_VERSION,
|
||||
Time,
|
||||
} from '@/constants';
|
||||
import type { APIRequest } from '@/requests';
|
||||
import { ControllerRegistry } from '@/decorators';
|
||||
import { isApiEnabled, loadPublicApiVersions } from '@/public-api';
|
||||
import type { ICredentialsOverwrite } from '@/interfaces';
|
||||
import { CredentialsOverwrites } from '@/credentials-overwrites';
|
||||
import { LoadNodesAndCredentials } from '@/load-nodes-and-credentials';
|
||||
import * as ResponseHelper from '@/response-helper';
|
||||
import { setupPushServer, setupPushHandler, Push } from '@/push';
|
||||
import { isLdapEnabled } from '@/ldap/helpers.ee';
|
||||
import { AbstractServer } from '@/abstract-server';
|
||||
import { PostHogClient } from '@/posthog';
|
||||
import { ControllerRegistry } from '@/decorators';
|
||||
import { MessageEventBus } from '@/eventbus/message-event-bus/message-event-bus';
|
||||
import { LogStreamingEventRelay } from '@/events/log-streaming-event-relay';
|
||||
import type { ICredentialsOverwrite } from '@/interfaces';
|
||||
import { isLdapEnabled } from '@/ldap/helpers.ee';
|
||||
import { LoadNodesAndCredentials } from '@/load-nodes-and-credentials';
|
||||
import { handleMfaDisable, isMfaFeatureEnabled } from '@/mfa/helpers';
|
||||
import { PostHogClient } from '@/posthog';
|
||||
import { isApiEnabled, loadPublicApiVersions } from '@/public-api';
|
||||
import { setupPushServer, setupPushHandler, Push } from '@/push';
|
||||
import type { APIRequest } from '@/requests';
|
||||
import * as ResponseHelper from '@/response-helper';
|
||||
import type { FrontendService } from '@/services/frontend.service';
|
||||
import { OrchestrationService } from '@/services/orchestration.service';
|
||||
import { LogStreamingEventRelay } from '@/events/log-streaming-event-relay';
|
||||
|
||||
import '@/controllers/active-workflows.controller';
|
||||
import '@/controllers/annotation-tags.controller';
|
||||
|
||||
Reference in New Issue
Block a user