| // NOTICE: This file is generated by Rollup. To modify it, |
| // please instead edit the ESM counterpart and rebuild with Rollup (npm run build). |
| 'use strict'; |
| |
| const selectorParser = require('postcss-selector-parser'); |
| const flattenNestedSelectorsForRule = require('../../utils/flattenNestedSelectorsForRule.cjs'); |
| const getStrippedSelectorSource = require('../../utils/getStrippedSelectorSource.cjs'); |
| const isNonNegativeInteger = require('../../utils/isNonNegativeInteger.cjs'); |
| const isStandardSyntaxRule = require('../../utils/isStandardSyntaxRule.cjs'); |
| const report = require('../../utils/report.cjs'); |
| const ruleMessages = require('../../utils/ruleMessages.cjs'); |
| const validateOptions = require('../../utils/validateOptions.cjs'); |
| |
| const { isSelector } = selectorParser; |
| |
| 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} 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 (childNode.type === 'combinator') total += 1; |
| |
| return total; |
| }, 0); |
| |
| 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; |
| |
| flattenNestedSelectorsForRule(ruleNode, result).forEach(({ selector, resolvedSelectors }) => { |
| resolvedSelectors.walk((childSelector) => { |
| if (!isSelector(childSelector)) return; |
| |
| checkSelector(childSelector, selector, ruleNode); |
| }); |
| }); |
| }); |
| }; |
| }; |
| |
| rule.ruleName = ruleName; |
| rule.messages = messages; |
| rule.meta = meta; |
| |
| module.exports = rule; |