stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
167 lines (134 loc) • 4.65 kB
JavaScript
import { compare, selectorSpecificity } from '@csstools/selector-specificity';
import resolvedNestedSelector from 'postcss-resolve-nested-selector';
import findAtRuleContext from '../../utils/findAtRuleContext.mjs';
import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs';
import isStandardSyntaxSelector from '../../utils/isStandardSyntaxSelector.mjs';
import nodeContextLookup from '../../utils/nodeContextLookup.mjs';
import optionsMatches from '../../utils/optionsMatches.mjs';
import parseSelector from '../../utils/parseSelector.mjs';
import { pseudoElements } from '../../reference/selectors.mjs';
import report from '../../utils/report.mjs';
import ruleMessages from '../../utils/ruleMessages.mjs';
import validateOptions from '../../utils/validateOptions.mjs';
const ruleName = 'no-descending-specificity';
const messages = ruleMessages(ruleName, {
rejected: (b, a) => `Expected selector "${b}" to come before selector "${a}"`,
});
const meta = {
url: 'https://stylelint.io/user-guide/rules/no-descending-specificity',
};
/** @typedef {{ selector: string, specificity: import('@csstools/selector-specificity').Specificity }} Entry */
/** @type {import('stylelint').Rule} */
const rule = (primary, secondaryOptions) => {
return (root, result) => {
const validOptions = validateOptions(
result,
ruleName,
{
actual: primary,
},
{
optional: true,
actual: secondaryOptions,
possible: {
ignore: ['selectors-within-list'],
},
},
);
if (!validOptions) {
return;
}
const ignoreSelectorsWithinList = optionsMatches(
secondaryOptions,
'ignore',
'selectors-within-list',
);
const selectorContextLookup = nodeContextLookup();
root.walkRules((ruleNode) => {
// Ignore nested property `foo: {};`
if (!isStandardSyntaxRule(ruleNode)) {
return;
}
const selectors = ruleNode.selectors;
// Ignores selectors within list of selectors
if (ignoreSelectorsWithinList && selectors.length > 1) {
return;
}
/** @type {Map<string, Entry[]>} */
const comparisonContext = selectorContextLookup.getContext(
ruleNode,
findAtRuleContext(ruleNode),
);
for (const selector of selectors) {
// Ignore `.selector, { }`
if (selector.trim() === '') {
continue;
}
// Resolve any nested selectors before checking
for (const resolvedSelector of resolvedNestedSelector(selector, ruleNode)) {
if (!isStandardSyntaxSelector(resolvedSelector)) {
continue;
}
parseSelector(resolvedSelector, result, ruleNode, (s) => {
checkSelector(resolvedSelector, s, ruleNode, comparisonContext);
});
}
}
});
/**
* @param {string} selector
* @param {import('postcss-selector-parser').Root} selectorNode
* @param {import('postcss').Rule} ruleNode
* @param {Map<string, Entry[]>} comparisonContext
*/
function checkSelector(selector, selectorNode, ruleNode, comparisonContext) {
const referenceSelector = lastCompoundSelectorWithoutPseudoClasses(selectorNode);
if (!referenceSelector) return;
const specificity = selectorSpecificity(selectorNode);
const entry = { selector, specificity };
const priorComparableSelectors = comparisonContext.get(referenceSelector);
if (!priorComparableSelectors) {
comparisonContext.set(referenceSelector, [entry]);
return;
}
for (const priorEntry of priorComparableSelectors) {
if (compare(specificity, priorEntry.specificity) < 0) {
report({
ruleName,
result,
node: ruleNode,
message: messages.rejected,
messageArgs: [selector, priorEntry.selector],
word: selector,
});
break;
}
}
priorComparableSelectors.push(entry);
}
};
};
/**
* @param {import('postcss-selector-parser').Root} selectorNode
* @returns {string | undefined}
*/
function lastCompoundSelectorWithoutPseudoClasses(selectorNode) {
const firstChild = selectorNode.nodes[0];
if (!firstChild) return undefined;
const nodesByCombinator = firstChild.split((node) => node.type === 'combinator');
const nodesAfterLastCombinator = nodesByCombinator[nodesByCombinator.length - 1];
if (!nodesAfterLastCombinator) return undefined;
const nodesWithoutPseudoClasses = nodesAfterLastCombinator.filter((node) => {
return (
node.type !== 'pseudo' ||
node.value.startsWith('::') ||
pseudoElements.has(node.value.replaceAll(':', ''))
);
});
if (nodesWithoutPseudoClasses.length === 0) return undefined;
return nodesWithoutPseudoClasses.join('');
}
rule.ruleName = ruleName;
rule.messages = messages;
rule.meta = meta;
export default rule;