Minimum number of selectors per rule
rules.selectors.minimum.count The number of selectors in the rule(s) with the lowest amount of selectors.
Example
/* 1 selector (this is the minimum) */
selector {
	property: value;
}
/* 2 selectors */
selector1,
selector2 {
	property: value;
}The result of this metric is 1, because the first ruleset has one selector.
{
	"rules.selectors.minimum.count": 1
}