[TS] Enable noUnusedLocals (#3108)

This commit is contained in:
Chenlei Hu
2025-03-17 16:20:56 -04:00
committed by GitHub
parent 9e9459815d
commit 7e66e99c3a
28 changed files with 27 additions and 248 deletions

View File

@@ -48,6 +48,7 @@ function parseVorbisComment(dataView: DataView): Record<string, string> {
let offset = 0
const vendorLength = dataView.getUint32(offset, true)
offset += 4
// @ts-expect-error unused variable
const vendorString = getString(dataView, offset, vendorLength)
offset += vendorLength