stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
233 lines (190 loc) • 6.47 kB
JavaScript
// 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 validateTypes = require('../../utils/validateTypes.cjs');
const flattenNestedSelectorsForRule = require('../../utils/flattenNestedSelectorsForRule.cjs');
const getStrippedSelectorSource = require('../../utils/getStrippedSelectorSource.cjs');
const isContextFunctionalPseudoClass = require('../../utils/isContextFunctionalPseudoClass.cjs');
const isCustomElement = require('../../utils/isCustomElement.cjs');
const isKeyframeSelector = require('../../utils/isKeyframeSelector.cjs');
const isNonNegativeInteger = require('../../utils/isNonNegativeInteger.cjs');
const isOnlyWhitespace = require('../../utils/isOnlyWhitespace.cjs');
const isStandardSyntaxRule = require('../../utils/isStandardSyntaxRule.cjs');
const isStandardSyntaxTypeSelector = require('../../utils/isStandardSyntaxTypeSelector.cjs');
const optionsMatches = require('../../utils/optionsMatches.cjs');
const report = require('../../utils/report.cjs');
const ruleMessages = require('../../utils/ruleMessages.cjs');
const validateOptions = require('../../utils/validateOptions.cjs');
const { isRoot, isSelector } = selectorParser;
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: [validateTypes.isString, validateTypes.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) => {
if (!isStandardSyntaxRule(ruleNode)) return;
if (ruleNode.selectors.some(isKeyframeSelector)) 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) && validateTypes.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;
module.exports = rule;