Maximum number of selectors per rule
rules.selectors.maximum.count
The number of selectors in the rule(s) with the highest amount of selectors.
Example
/* 1 selector */
selector {
property: value;
}
/* Highest number of selectors: 2 */
selector1,
selector2 {
property: value;
}
The result of this metric is 2, because the second ruleset has two selectors.
{
"rules.selectors.maximum.count": 2
}