stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
77 lines (63 loc) • 2.04 kB
JavaScript
import getRuleSelector from '../../utils/getRuleSelector.mjs';
import getStrippedSelectorSource from '../../utils/getStrippedSelectorSource.mjs';
import isNonNegativeInteger from '../../utils/isNonNegativeInteger.mjs';
import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs';
import parseSelector from '../../utils/parseSelector.mjs';
import report from '../../utils/report.mjs';
import ruleMessages from '../../utils/ruleMessages.mjs';
import validateOptions from '../../utils/validateOptions.mjs';
const ruleName = 'selector-max-combinators';
const messages = ruleMessages(ruleName, {
expected: (selector, max) =>
`Expected "${selector}" to have no more than ${max} ${
max === 1 ? 'combinator' : 'combinators'
}`,
});
const meta = {
url: 'https://stylelint.io/user-guide/rules/selector-max-combinators',
};
/** @type {import('stylelint').CoreRules[ruleName]} */
const rule = (primary) => {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, {
actual: primary,
possible: isNonNegativeInteger,
});
if (!validOptions) {
return;
}
/**
* @param {import('postcss-selector-parser').Selector} selectorNode
* @param {import('postcss').Rule} ruleNode
*/
function checkSelector(selectorNode, ruleNode) {
let count = 0;
selectorNode.walkCombinators((/* node */) => {
count += 1;
});
if (count > primary) {
const { index, endIndex, selector: selectorStr } = getStrippedSelectorSource(selectorNode);
report({
ruleName,
result,
node: ruleNode,
message: messages.expected,
messageArgs: [selectorStr, primary],
index,
endIndex,
});
}
}
root.walkRules((ruleNode) => {
if (!isStandardSyntaxRule(ruleNode)) return;
const selectors = parseSelector(getRuleSelector(ruleNode), result, ruleNode);
selectors?.each((selector) => {
checkSelector(selector, ruleNode);
});
});
};
};
rule.ruleName = ruleName;
rule.messages = messages;
rule.meta = meta;
export default rule;