UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

123 lines (100 loc) 3.55 kB
import selectorParser from 'postcss-selector-parser'; const { isCombinator, isPseudo, isRoot } = selectorParser; import { isRegExp, isString } from '../../utils/validateTypes.mjs'; 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 { mayIncludeRegexes } from '../../utils/regexes.mjs'; import optionsMatches from '../../utils/optionsMatches.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-compound-selectors'; const messages = ruleMessages(ruleName, { expected: (selector, /** @type {number} */ max) => `Too many compound selectors in "${selector}", maximum ${max}`, }); const meta = { url: 'https://stylelint.io/user-guide/rules/selector-max-compound-selectors', }; /** @type {import('stylelint').CoreRules[ruleName]} */ const rule = (primary, secondaryOptions) => { return (root, result) => { const validOptions = validateOptions( result, ruleName, { actual: primary, possible: isNonNegativeInteger, }, { actual: secondaryOptions, possible: { ignoreSelectors: [isString, isRegExp], }, optional: true, }, ); if (!validOptions) { return; } /** * @param {import('postcss-selector-parser').Node} selectorNode * @returns {boolean} */ function isSelectorIgnored(selectorNode) { const selector = isPseudo(selectorNode) ? selectorNode.value : selectorNode.toString(); return optionsMatches(secondaryOptions, 'ignoreSelectors', selector); } /** * @param {import('postcss-selector-parser').Selector} selectorNode * @param {import('postcss').Rule} ruleNode */ function checkSelector(selectorNode, ruleNode) { /** @type {import('postcss-selector-parser').Node[]} */ const filteredChildNodes = []; selectorNode.walk((childNode) => { if (!isSelectorIgnored(childNode)) { filteredChildNodes.push(childNode); } }); if (isRoot(selectorNode) || isPseudo(selectorNode)) return; // Normalize selector nodes and count combinators const combinatorCount = filteredChildNodes.reduce((count, node, i, nodes) => { // Not count a node except a combinator if (!isCombinator(node)) return count; // Not count a combinator at the edge if (i === 0 || i === nodes.length - 1) return count; // Not count a consecutive combinator if (isCombinator(nodes[i + 1])) return count; return count + 1; }, 0); const compoundCount = combinatorCount + 1; if (compoundCount > primary) { const { index, endIndex, selector: selectorStr } = getStrippedSelectorSource(selectorNode); report({ ruleName, result, node: ruleNode, message: messages.expected, messageArgs: [selectorStr, primary], index, endIndex, }); } } root.walkRules(mayIncludeRegexes.combinator, (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;