chore: apply core lint cleanups

This commit is contained in:
Peter Steinberger
2026-04-23 05:28:11 +01:00
parent cc9dcd3d69
commit 596b88986d
41 changed files with 85 additions and 82 deletions

View File

@@ -94,7 +94,7 @@ export async function runNodeDaemonInstall(opts: NodeDaemonInstallOptions) {
const config = await loadNodeHostConfig();
const { host, port } = resolveNodeDefaults(opts, config);
if (!Number.isFinite(port ?? NaN) || (port ?? 0) <= 0) {
if (!Number.isFinite(port ?? Number.NaN) || (port ?? 0) <= 0) {
fail("Invalid port");
return;
}