stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
86 lines (68 loc) • 2.2 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).
;
const isStandardSyntaxCombinator = require('../../utils/isStandardSyntaxCombinator.cjs');
const isStandardSyntaxRule = require('../../utils/isStandardSyntaxRule.cjs');
const validateTypes = require('../../utils/validateTypes.cjs');
const parseSelector = require('../../utils/parseSelector.cjs');
const report = require('../../utils/report.cjs');
const ruleMessages = require('../../utils/ruleMessages.cjs');
const validateOptions = require('../../utils/validateOptions.cjs');
const ruleName = 'selector-combinator-allowed-list';
const messages = ruleMessages(ruleName, {
rejected: (combinator) => `Unexpected combinator "${combinator}"`,
});
const meta = {
url: 'https://stylelint.io/user-guide/rules/selector-combinator-allowed-list',
};
/** @type {import('stylelint').CoreRules[ruleName]} */
const rule = (primary) => {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, {
actual: primary,
possible: [validateTypes.isString],
});
if (!validOptions) {
return;
}
root.walkRules((ruleNode) => {
if (!isStandardSyntaxRule(ruleNode)) {
return;
}
const selector = ruleNode.selector;
parseSelector(selector, result, ruleNode)?.walkCombinators((combinatorNode) => {
if (!isStandardSyntaxCombinator(combinatorNode)) {
return;
}
const { value } = combinatorNode;
const normalizedValue = normalizeCombinator(value);
if (primary.includes(normalizedValue)) {
return;
}
const { sourceIndex: index, raws } = combinatorNode;
const endIndex = index + ((raws && raws.value) || value).length;
report({
result,
ruleName,
message: messages.rejected,
messageArgs: [normalizedValue],
node: ruleNode,
index,
endIndex,
});
});
});
};
};
/**
* @param {string} value
* @returns {string}
*/
function normalizeCombinator(value) {
return value.replace(/\s+/g, ' ');
}
rule.primaryOptionArray = true;
rule.ruleName = ruleName;
rule.messages = messages;
rule.meta = meta;
module.exports = rule;