Default severity: warning
The byte offset is the first argument and the whence constant is the second.
Bad
seeker.Seek(io.SeekStart, 0)Good
seeker.Seek(0, io.SeekStart)Detect swapped io.Seeker.Seek arguments.
Default severity: warning
The byte offset is the first argument and the whence constant is the second.
seeker.Seek(io.SeekStart, 0)seeker.Seek(0, io.SeekStart)