chore: fix pre-existing lint issues blocking commits

- wsl_v5: blank line before t.Fatal after rows.Close
- staticcheck SA5011: explicit return after t.Fatal for nil guards

No behavior change.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-15 10:04:14 -04:00
co-authored by Claude Opus 4.6
parent 4ac8a7c5af
commit 5ca16b9c9c
3 changed files with 16 additions and 0 deletions
+2
View File
@@ -69,6 +69,8 @@ func TestGetFlacDuration_BasicParsing(t *testing.T) {
if props == nil {
t.Fatal("expected non-nil AudioProperties")
return
}
if props.SampleRate <= 0 {