Is there a way to see all the violations that are being ignored via @SuppressWarnings
?
I know that we can see everything marked as a false positive in the tool, but what about what was ignored due to the annotation. Is there a way to audit everything that was ignored?
For example, by annotating a variable with @SuppressWarnings("squid:S2039")
, will disable the rule Member variable visibility should be specified, and it won't show up on SonarQube, which is expected. However, if we want to see everything that was suppressed, is there a way to see it in the tool?