A list of compiler rules for OCLint

290 Views Asked by At

Is there a list of all compiler rules (not OCLint rules) which oclint produceses with enabled option -enable-clang-static-analyzer?

What I'm looking for is for example rule="clang static analyzer" or rule="compiler warning" from the xml snippet below.

<violation begincolumn="1" endcolumn="0" beginline="27" endline="0" priority="2" rule="clang static analyzer" ruleset="clang" >
Potential leak of memory pointed to by 'xxx'
</violation>
</file>

<violation begincolumn="11" endcolumn="0" beginline="26" endline="0" priority="2" rule="compiler warning" ruleset="clang" >
unused variable 'xxx'
</violation>
</file>
0

There are 0 best solutions below