Checks that class parameter names conform to the specified format
The following code snippet illustrates this rule for format "^[A-Z]$":
class Something<type> { // Non-compliant
}
class Something<T> { // Compliant
}
This rule is deprecated, use {rule:squid:S00119} instead.