chore(core): Lintfix modern packages (#17046)

This commit is contained in:
Iván Ovejero
2025-07-07 14:30:57 +02:00
committed by GitHub
parent 534f34d4c1
commit 7d06a89d4d
14 changed files with 10 additions and 20 deletions

View File

@@ -54,7 +54,6 @@ export class AddJsonKeyPinData1659888469333 implements IrreversibleMigration {
}
const newPinDataPerWorkflow = Object.keys(pinDataPerWorkflow).reduce<NewPinnedData>(
// eslint-disable-next-line @typescript-eslint/no-shadow
(newPinDataPerWorkflow, nodeName) => {
let pinDataPerNode = pinDataPerWorkflow[nodeName];

View File

@@ -124,7 +124,6 @@ export class Column {
return this;
}
// eslint-disable-next-line complexity
toOptions(driver: Driver): TableColumnOptions {
const {
name,

View File

@@ -10,7 +10,6 @@ export class MigrateIntegerKeysToString1690000000002 implements IrreversibleMigr
transaction = false as const;
async up(context: MigrationContext) {
// eslint-disable-next-line @typescript-eslint/no-use-before-define
await pruneExecutionsData(context);
const { queryRunner, tablePrefix } = context;

View File

@@ -1001,7 +1001,6 @@ export class ExecutionRepository extends Repository<ExecutionEntity> {
qb.setParameter('value', exactMatch ? value : `%${value}%`);
}
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
if (annotationTags?.length || vote) {
// If there is a filter by one or multiple tags or by vote - we need to join the annotations table
qb.innerJoin('execution.annotation', 'annotation');