Enable tsconfig noUncheckedIndexedAccess

Co-authored-by: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com>
This commit is contained in:
automated-signal
2026-03-16 12:20:58 -05:00
committed by GitHub
parent 279a69f3b3
commit 5684e0d0aa
311 changed files with 2146 additions and 1589 deletions

View File

@@ -21,7 +21,8 @@ export function formatAcceptLanguageHeader(
const length = Math.min(languages.length, MAX_LANGUAGES_TO_FORMAT);
for (let i = 0; i < length; i += 1) {
const language = languages[i];
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const language = languages[i]!;
// ["If no 'q' parameter is present, the default weight is 1."][1]
//