style(19-02): fix wsl lint warnings in WAV test and writer

- Add blank lines before cuddled expressions in wav_test.go
- Fix cuddled copy expression in wav.go writeRIFF
- All WAV lint issues resolved (remaining are pre-existing in other files)
This commit is contained in:
2026-03-19 08:57:57 -04:00
parent 1b28882af4
commit f11b523afb
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -169,6 +169,7 @@ func writeRIFF(w io.Writer, chunks []riffChunk, id3Data []byte) error {
// Write id3 chunk last.
var id3ID [4]byte
copy(id3ID[:], "id3 ")
return writeChunk(w, id3ID, id3Data)