This is required until SONAR-3783 not resolved.
rule.squid.CommentedOutCodeLine.name=Avoid commented-out lines of code
rule.squid.CycleBetweenPackages.name=Avoid cycle between java packages
+
+rule.squid.ParsingError.name=Java parser failure
+
+rule.squid.MaximumLackOfCohesionOfMethods.name=Avoid too high LCOM4
+rule.squid.MaximumLackOfCohesionOfMethods.param.max=Maximum LCOM4 allowed.
--- /dev/null
+<p>
+Detects classes that should be reviewed because of a high LCOM4 metric.
+They possibly violate the Single Responsibility Principle.
+</p>
--- /dev/null
+<p>
+When the Java parser fails, it is possible to record the failure as a violation on the file.
+This way, not only it is possible to track the number of files that do not parse but also to easily find out why they do not parse.
+</p>