Support codecov.json format
Is your feature request related to a problem? Please describe.
I'm using a project that generates codecov.json and would like to view coverage from this file, but vscode-coverage-gutters doesn't currently support it.
Describe the solution you'd like
It would be great if vscode-coverage-gutters could parse and display coverage from codecov.json files.
Describe alternatives you've considered
I’ve considered converting codecov.json to lcov.info, but it adds extra steps to the workflow.
Thanks for the issue @marco-carvalho ! You should be able to change or add coverage file names via the setting below. (You can change settings by going into https://code.visualstudio.com/docs/getstarted/personalize-vscode#_configure-settings)
coverage-gutters.coverageFileNames
https://github.com/ryanluker/vscode-coverage-gutters/blob/master/package.json#L116-L128
Note: CodeCov does need to be in one of the supported coverage files though (LCOV, jacaco, etc).
Closing but happy to open if more comments / questions are asked.