mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
chore(core): Lintfix modern packages (#17046)
This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
@@ -124,7 +124,6 @@ export class Column {
|
||||
return this;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line complexity
|
||||
toOptions(driver: Driver): TableColumnOptions {
|
||||
const {
|
||||
name,
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user