Selectors of rule(s) with highest number of selectors

rules.selectors.maximum.value

A list of the selectors of the rule(s) with the highest number of selectors.

Example

/* 1 selector */
selector {
	property: value;
}

/* Highest number of selectors: 2 */
selector1,
selector2 {
	property: value;
}

The result of this metric is an array of selectors:

{
	"rules.selectors.maximum.value": [
		"selector1",
		"selector2"
	]
}

Further reading