stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
237 lines (193 loc) • 6.71 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 validateTypes = require('../../utils/validateTypes.cjs');
const flattenNestedSelectorsForRule = require('../../utils/flattenNestedSelectorsForRule.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 isStandardSyntaxSelector = require('../../utils/isStandardSyntaxSelector.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 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').Rule} */
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').Container<string | undefined>} resolvedSelectorNode
* @param {import('postcss-selector-parser').Container<string | undefined>} selectorNode
* @param {import('postcss').Rule} ruleNode
*/
function checkSelector(resolvedSelectorNode, selectorNode, ruleNode) {
const count = resolvedSelectorNode.reduce((total, childNode) => {
// Only traverse inside actual selectors and context functional pseudo-classes
if (childNode.type === 'selector' || isContextFunctionalPseudoClass(childNode)) {
checkSelector(childNode, selectorNode, ruleNode);
}
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 (selectorNode.type !== 'root' && selectorNode.type !== 'pseudo' && count > primary) {
const index = selectorNode.first?.sourceIndex ?? 0;
const selectorStr = selectorNode.toString().trim();
report({
ruleName,
result,
node: ruleNode,
message: messages.expected,
messageArgs: [selectorStr, primary],
index,
endIndex: index + selectorStr.length,
});
}
}
root.walkRules((ruleNode) => {
const selectors = ruleNode.selectors;
if (!isStandardSyntaxRule(ruleNode)) {
return;
}
if (selectors.some((s) => isKeyframeSelector(s))) {
return;
}
if (!isStandardSyntaxSelector(ruleNode.selector)) return;
flattenNestedSelectorsForRule(ruleNode, result).forEach(({ selector, resolvedSelectors }) => {
resolvedSelectors.forEach((resolvedSelector) => {
checkSelector(resolvedSelector, 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;