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,8 +1,6 @@
import { GlobalConfig } from '@n8n/config';
import glob from 'fast-glob';
import { Container, Service } from 'typedi';
import path from 'path';
import fsPromises from 'fs/promises';
import type { Class, DirectoryLoader, Types } from 'n8n-core';
import {
CUSTOM_EXTENSION_ENV,
@@ -19,6 +17,8 @@ import type {
ICredentialTypeData,
} from 'n8n-workflow';
import { NodeHelpers, ApplicationError, ErrorReporterProxy as ErrorReporter } from 'n8n-workflow';
import path from 'path';
import { Container, Service } from 'typedi';
import {
CUSTOM_API_CALL_KEY,
@@ -28,7 +28,6 @@ import {
inE2ETests,
} from '@/constants';
import { Logger } from '@/logger';
import { GlobalConfig } from '@n8n/config';
interface LoadedNodesAndCredentials {
nodes: INodeTypeData;