Disable silly lint rule (#1328)

This commit is contained in:
Jordan Eldredge 2025-11-28 11:53:25 -08:00 committed by GitHub
parent 8fa7701b47
commit d687f4b06c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View file

@ -82,7 +82,6 @@
"prefer-spread": "error",
"prefer-template": "warn",
"radix": "error",
"no-return-await": "error",
"use-isnan": "error",
"valid-typeof": "error",
"@typescript-eslint/no-unused-vars": [

View file

@ -42,7 +42,6 @@ export async function getPlaylist(
}
);
// eslint-disable-next-line no-return-await
return await result.json();
}