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 }