Eslint migration 4 (#13773)

A new attempt to migrate!
This commit is contained in:
Félix Malfait
2025-08-08 16:21:57 +02:00
committed by GitHub
parent 81012ab1fb
commit 5fae14377a
36 changed files with 1206 additions and 510 deletions
@@ -37,7 +37,7 @@ export function Processor(
? queueNameOrOptions
: { queueName: queueNameOrOptions };
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
return (target: Function) => {
SetMetadata(SCOPE_OPTIONS_METADATA, options)(target);
SetMetadata(PROCESSOR_METADATA, options)(target);
@@ -1,4 +1,4 @@
/* eslint-disable @typescript-eslint/ban-types */
/* eslint-disable @typescript-eslint/no-unsafe-function-type */
import { Injectable, type Type } from '@nestjs/common';
import { Reflector } from '@nestjs/core';