Hi @mpaladin,
I want to raise a point for “lcov” support for C/C++ code.
Reasoning:
We use Bazel to build our C++ project. Bazel natively supports coverage generation for C++ code, by simply passing some arguments. However, Bazel only support “lcov” as an output format, see bazel doc.
Background:
Bazel streamlines the coverage format for all kind of programming languages. It generates the “lcov” format for example also for python coverage or llvm-coverage with clang.
Solution:
The lcov format is already supported by typescript (sonar.typescript.lcov.reportPaths), I assume that it should be not so complex to extend the support for C code.
What do you think about it?