Hi,
I’ve found an error in the description of the “Abstract class names should comply with a naming convention” Java rule.
There it’s shown this example as a compliant solution:
abstract class MyAbstractClass {
}
But this is wrong, because it’s not compliant with the regular expression
^Abstract[A-Z][a-zA-Z0-9]*$
Is this the right place for reporting the issue?
Thanks!