ci: Enforce no unused imports (no-changelog) (#6073)

This commit is contained in:
Iván Ovejero
2023-04-25 11:47:03 +02:00
committed by GitHub
parent f3b4701863
commit 88724bb056
61 changed files with 98 additions and 94 deletions

View File

@@ -1,7 +1,6 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable @typescript-eslint/no-non-null-assertion */
import { In } from 'typeorm';
import type express from 'express';
import { compare, genSaltSync, hash } from 'bcryptjs';
import { Container } from 'typedi';
@@ -12,7 +11,6 @@ import type { User } from '@db/entities/User';
import { MAX_PASSWORD_LENGTH, MIN_PASSWORD_LENGTH } from '@db/entities/User';
import type { Role } from '@db/entities/Role';
import { RoleRepository } from '@db/repositories';
import type { AuthenticatedRequest } from '@/requests';
import config from '@/config';
import { getWebhookBaseUrl } from '@/WebhookHelpers';
import { License } from '@/License';

View File

@@ -21,7 +21,6 @@ import type {
IRun,
WorkflowExecuteMode,
WorkflowHooks,
WorkflowSettings,
} from 'n8n-workflow';
import {
ErrorReporterProxy as ErrorReporter,