Goverage – Inline Go Code Coverage Hints for VS Code
Goverage is a VS Code extension that displays inline code coverage hints for Go files, based on the go test -coverprofile report.
It helps visualize how well your Go functions and files are covered by tests.
✨ Features
✅ File-level coverage: shown above the package line.
✅ Function-level coverage: shown above each func declaration.
✅ Parses coverage.out generated by go test -coverpkg=./... -coverprofile=coverage.out.
✅ Updates automatically when coverage.out is saved or opened.