chore: finish migrating eslint config files; bump unicorn (#17200)

This commit is contained in:
Daniel Dietzler
2025-03-31 13:18:25 +02:00
committed by GitHub
parent e4f83680d9
commit 238c151ac3
23 changed files with 883 additions and 1286 deletions

View File

@@ -103,7 +103,9 @@ export class ApiService {
break;
}
}
} catch {}
} catch {
// nothing to do here
}
res.type('text/html').header('Cache-Control', 'no-store').send(html);
};

View File

@@ -1,5 +1,5 @@
import { Injectable } from '@nestjs/common';
import { default as path } from 'node:path';
import path from 'node:path';
import semver from 'semver';
import { StorageCore } from 'src/cores/storage.core';
import { OnEvent, OnJob } from 'src/decorators';