Suite of AT Protocol TypeScript libraries built on web standards
21
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: fix lint errors

+5 -3
+2 -2
common/tests/logger_test.ts
··· 29 29 await withPatchedEnvGet((name) => { 30 30 calls.push(name); 31 31 return undefined; 32 - }, async () => { 32 + }, () => { 33 33 _resetLoggerStateForTest(); 34 34 const logger = subsystemLogger("repo"); 35 35 ··· 49 49 Deno.test("subsystemLogger treats env permission errors as unset", async () => { 50 50 await withPatchedEnvGet(() => { 51 51 throw new Deno.errors.PermissionDenied("env denied"); 52 - }, async () => { 52 + }, () => { 53 53 _resetLoggerStateForTest(); 54 54 const logger = subsystemLogger("repo"); 55 55
+3 -1
lex/resolver/lex-resolver.ts
··· 348 348 const expected = getRecordQuery.output.encoding; 349 349 if (expected !== undefined && !matchesEncoding(expected, contentType)) { 350 350 throw new TypeError( 351 - `Unexpected content-type ${contentType ?? "null"} for ${getRecordQuery.nsid}`, 351 + `Unexpected content-type ${ 352 + contentType ?? "null" 353 + } for ${getRecordQuery.nsid}`, 352 354 ); 353 355 } 354 356