mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(core): Enable import/order eslint rule (#10794)
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
import { Container, Service } from 'typedi';
|
||||
import { GlobalConfig } from '@n8n/config';
|
||||
import { Router } from 'express';
|
||||
import type { Application, Request, Response, RequestHandler } from 'express';
|
||||
import { rateLimit as expressRateLimit } from 'express-rate-limit';
|
||||
import { Container, Service } from 'typedi';
|
||||
|
||||
import { AuthService } from '@/auth/auth.service';
|
||||
import { UnauthenticatedError } from '@/errors/response-errors/unauthenticated.error';
|
||||
import { inProduction, RESPONSE_ERROR_MESSAGES } from '@/constants';
|
||||
import { UnauthenticatedError } from '@/errors/response-errors/unauthenticated.error';
|
||||
import type { BooleanLicenseFeature } from '@/interfaces';
|
||||
import { License } from '@/license';
|
||||
import { userHasScope } from '@/permissions/check-access';
|
||||
import type { AuthenticatedRequest } from '@/requests';
|
||||
import { send } from '@/response-helper'; // TODO: move `ResponseHelper.send` to this file
|
||||
import { userHasScope } from '@/permissions/check-access';
|
||||
import { GlobalConfig } from '@n8n/config';
|
||||
|
||||
import type {
|
||||
AccessScope,
|
||||
Controller,
|
||||
|
||||
Reference in New Issue
Block a user