UNPKG

stylelint

Version:

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

230 lines (188 loc) 6.24 kB
import selectorParser from 'postcss-selector-parser'; const { isRoot, isSelector } = selectorParser; import { isRegExp, isString } from '../../utils/validateTypes.mjs'; import flattenNestedSelectorsForRule from '../../utils/flattenNestedSelectorsForRule.mjs'; import getStrippedSelectorSource from '../../utils/getStrippedSelectorSource.mjs'; import isContextFunctionalPseudoClass from '../../utils/isContextFunctionalPseudoClass.mjs'; import isCustomElement from '../../utils/isCustomElement.mjs'; import isKeyframeSelector from '../../utils/isKeyframeSelector.mjs'; import isNonNegativeInteger from '../../utils/isNonNegativeInteger.mjs'; import isOnlyWhitespace from '../../utils/isOnlyWhitespace.mjs'; import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs'; import isStandardSyntaxTypeSelector from '../../utils/isStandardSyntaxTypeSelector.mjs'; import optionsMatches from '../../utils/optionsMatches.mjs'; import report from '../../utils/report.mjs'; import ruleMessages from '../../utils/ruleMessages.mjs'; import validateOptions from '../../utils/validateOptions.mjs'; const ruleName = 'selector-max-type'; const messages = ruleMessages(ruleName, { expected: (selector, max) => `Expected "${selector}" to have no more than ${max} type ${ max === 1 ? 'selector' : 'selectors' }`, }); const meta = { url: 'https://stylelint.io/user-guide/rules/selector-max-type', }; /** @type {import('stylelint').CoreRules[ruleName]} */ const rule = (primary, secondaryOptions) => { return (root, result) => { const validOptions = validateOptions( result, ruleName, { actual: primary, possible: isNonNegativeInteger, }, { actual: secondaryOptions, possible: { ignore: ['descendant', 'child', 'compounded', 'next-sibling', 'custom-elements'], ignoreTypes: [isString, isRegExp], }, optional: true, }, ); if (!validOptions) { return; } const ignoreDescendant = optionsMatches(secondaryOptions, 'ignore', 'descendant'); const ignoreChild = optionsMatches(secondaryOptions, 'ignore', 'child'); const ignoreCompounded = optionsMatches(secondaryOptions, 'ignore', 'compounded'); const ignoreNextSibling = optionsMatches(secondaryOptions, 'ignore', 'next-sibling'); const ignoreCustomElements = optionsMatches(secondaryOptions, 'ignore', 'custom-elements'); /** * @param {import('postcss-selector-parser').Selector} resolvedSelectorNode * @param {import('postcss-selector-parser').Selector} selectorNode * @param {import('postcss').Rule} ruleNode */ function checkSelector(resolvedSelectorNode, selectorNode, ruleNode) { const count = resolvedSelectorNode.reduce((total, childNode) => { if (optionsMatches(secondaryOptions, 'ignoreTypes', childNode.value)) { return total; } if (ignoreDescendant && hasDescendantCombinatorBefore(childNode)) { return total; } if (ignoreChild && hasChildCombinatorBefore(childNode)) { return total; } if (ignoreCompounded && hasCompoundSelector(childNode)) { return total; } if (ignoreNextSibling && hasNextSiblingCombinator(childNode)) { return total; } if (ignoreCustomElements && childNode.value && isCustomElement(childNode.value)) { return total; } if (childNode.type === 'tag' && !isStandardSyntaxTypeSelector(childNode)) { return total; } return childNode.type === 'tag' ? total + 1 : total; }, 0); if (count > primary) { const { selector, index, endIndex } = getStrippedSelectorSource(selectorNode); report({ ruleName, result, node: ruleNode, message: messages.expected, messageArgs: [selector, primary], index, endIndex, }); } } root.walkRules((ruleNode) => { const selectors = ruleNode.selectors; if (!isStandardSyntaxRule(ruleNode)) return; if (selectors.some((s) => isKeyframeSelector(s))) return; flattenNestedSelectorsForRule(ruleNode, result).forEach(({ selector, resolvedSelectors }) => { resolvedSelectors.walk((childSelector) => { if (!isSelector(childSelector)) return; if ( isRoot(childSelector.parent) || isContextFunctionalPseudoClass(childSelector.parent) ) { checkSelector(childSelector, selector, ruleNode); } }); }); }); }; }; /** @typedef {import('postcss-selector-parser').Node} SelectorNode */ /** * @param {SelectorNode} node * @returns {boolean} */ function hasDescendantCombinatorBefore(node) { if (!node.parent) return false; const nodeIndex = node.parent.nodes.indexOf(node); return node.parent.nodes.slice(0, nodeIndex).some((n) => isDescendantCombinator(n)); } /** * @param {SelectorNode} node * @returns {boolean} */ function hasChildCombinatorBefore(node) { if (!node.parent) return false; const nodeIndex = node.parent.nodes.indexOf(node); return node.parent.nodes.slice(0, nodeIndex).some((n) => isChildCombinator(n)); } /** * @param {SelectorNode} node * @returns {boolean} */ function hasCompoundSelector(node) { if (node.prev() && !isCombinator(node.prev())) { return true; } if (node.next() && !isCombinator(node.next())) { return true; } return false; } /** * @param {SelectorNode} node * @returns {boolean} */ function hasNextSiblingCombinator(node) { return isNextSiblingCombinator(node.prev()); } /** * @param {SelectorNode | undefined} node * @returns {node is import('postcss-selector-parser').Combinator} */ function isCombinator(node) { if (!node) return false; return node.type === 'combinator'; } /** * @param {SelectorNode | undefined} node * @returns {boolean} */ function isDescendantCombinator(node) { if (!node) return false; return isCombinator(node) && isString(node.value) && isOnlyWhitespace(node.value); } /** * @param {SelectorNode | undefined} node * @returns {boolean} */ function isChildCombinator(node) { if (!node) return false; return isCombinator(node) && node.value === '>'; } /** * @param {SelectorNode | undefined} node * @returns {boolean} */ function isNextSiblingCombinator(node) { return isCombinator(node) && node.value === '+'; } rule.ruleName = ruleName; rule.messages = messages; rule.meta = meta; export default rule;