Enable tsconfig noUncheckedIndexedAccess

This commit is contained in:
Jamie
2026-03-12 16:24:01 -07:00
committed by GitHub
parent 34b0f9cd50
commit 1d45a52da7
311 changed files with 2146 additions and 1589 deletions

View File

@@ -47,7 +47,8 @@ export async function createProxyAgent(proxyUrl: string): Promise<ProxyAgent> {
// SOCKS 4/5 resolve target host before sending it to the proxy.
if (host !== proxyHost) {
const idx = Math.floor(Math.random() * addresses.length);
return addresses[idx];
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return addresses[idx]!;
}
const start = Date.now();