UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

131 lines (105 loc) 3.46 kB
import { isRegExp, isString } from '../../utils/validateTypes.mjs'; import isKeyframeSelector from '../../utils/isKeyframeSelector.mjs'; import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs'; import isStandardSyntaxTypeSelector from '../../utils/isStandardSyntaxTypeSelector.mjs'; import { mixedCaseSvgTypeSelectors } from '../../reference/selectors.mjs'; import optionsMatches from '../../utils/optionsMatches.mjs'; import parseSelector from '../../utils/parseSelector.mjs'; import report from '../../utils/report.mjs'; import ruleMessages from '../../utils/ruleMessages.mjs'; import validateOptions from '../../utils/validateOptions.mjs'; const ruleName = 'selector-type-case'; const messages = ruleMessages(ruleName, { expected: (actual, expected) => `Expected "${actual}" to be "${expected}"`, }); const meta = { url: 'https://stylelint.io/user-guide/rules/selector-type-case', fixable: true, }; const STARTS_A_TAG_NAME_REGEX = /(?:[^.#[:a-z-]|^)[a-z]/i; const ANY_UPPER_CASE_REGEX = /[A-Z]/; const ANY_LOWER_CASE_REGEX = /[a-z]/; /** @type {import('stylelint').Rule} */ const rule = (primary, secondaryOptions, context) => { return (root, result) => { const validOptions = validateOptions( result, ruleName, { actual: primary, possible: ['lower', 'upper'], }, { actual: secondaryOptions, possible: { ignoreTypes: [isString, isRegExp], }, optional: true, }, ); if (!validOptions) { return; } root.walkRules((ruleNode) => { let hasComments = ruleNode.raws.selector && ruleNode.raws.selector.raw; const selector = hasComments ? hasComments : ruleNode.selector; if (!STARTS_A_TAG_NAME_REGEX.test(selector)) return; if (primary === 'lower' && !ANY_UPPER_CASE_REGEX.test(selector)) return; if (primary === 'upper' && !ANY_LOWER_CASE_REGEX.test(selector)) return; if (!isStandardSyntaxRule(ruleNode)) return; const { selectors } = ruleNode; if (selectors.some((s) => isKeyframeSelector(s))) { return; } parseSelector(selector, result, ruleNode, (selectorAST) => { selectorAST.walkTags((tag) => { if (!isStandardSyntaxTypeSelector(tag)) { return; } if (mixedCaseSvgTypeSelectors.has(tag.value)) { return; } if (optionsMatches(secondaryOptions, 'ignoreTypes', tag.value)) { return; } const sourceIndex = tag.sourceIndex; const value = tag.value; const expectedValue = primary === 'lower' ? value.toLowerCase() : value.toUpperCase(); if (value === expectedValue) { return; } if (context.fix) { if (hasComments) { hasComments = hasComments.slice(0, sourceIndex) + expectedValue + hasComments.slice(sourceIndex + value.length); if (ruleNode.raws.selector == null) { throw new Error('The `raw` property must be present'); } ruleNode.raws.selector.raw = hasComments; } else { ruleNode.selector = ruleNode.selector.slice(0, sourceIndex) + expectedValue + ruleNode.selector.slice(sourceIndex + value.length); } return; } report({ message: messages.expected, messageArgs: [value, expectedValue], node: ruleNode, index: sourceIndex, ruleName, result, }); }); }); }); }; }; rule.ruleName = ruleName; rule.messages = messages; rule.meta = meta; export default rule;