UNPKG

stylelint

Version:

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

93 lines (76 loc) 2.44 kB
import valueParser from 'postcss-value-parser'; import { declarationValueIndex } from '../../utils/nodeFieldIndices.mjs'; import isAutoprefixable from '../../utils/isAutoprefixable.mjs'; import isStandardSyntaxDeclaration from '../../utils/isStandardSyntaxDeclaration.mjs'; import isStandardSyntaxProperty from '../../utils/isStandardSyntaxProperty.mjs'; import { mayIncludeRegexes } from '../../utils/regexes.mjs'; import optionsMatches from '../../utils/optionsMatches.mjs'; import report from '../../utils/report.mjs'; import ruleMessages from '../../utils/ruleMessages.mjs'; import setDeclarationValue from '../../utils/setDeclarationValue.mjs'; import validateOptions from '../../utils/validateOptions.mjs'; import { isRegExp, isString } from '../../utils/validateTypes.mjs'; const ruleName = 'value-no-vendor-prefix'; const messages = ruleMessages(ruleName, { rejected: (value) => `Unexpected vendor-prefixed value "${value}"`, }); const meta = { url: 'https://stylelint.io/user-guide/rules/value-no-vendor-prefix', fixable: true, }; /** @type {import('stylelint').CoreRules[ruleName]} */ const rule = (primary, secondaryOptions) => { return (root, result) => { const validOptions = validateOptions( result, ruleName, { actual: primary }, { optional: true, actual: secondaryOptions, possible: { ignoreValues: [isString, isRegExp], }, }, ); if (!validOptions) { return; } root.walkDecls((decl) => { const { value } = decl; if (!mayIncludeRegexes.prefix.test(value)) return; if (!isStandardSyntaxDeclaration(decl) || !isStandardSyntaxProperty(decl.prop)) { return; } const parsedValue = valueParser(value); parsedValue.walk((node) => { if (!isAutoprefixable.propertyValue(node.value)) { return; } if (optionsMatches(secondaryOptions, 'ignoreValues', node.value)) return; const index = declarationValueIndex(decl) + node.sourceIndex; const fix = () => { node.value = isAutoprefixable.unprefix(node.value); setDeclarationValue(decl, parsedValue.toString()); }; report({ message: messages.rejected, messageArgs: [node.value], node: decl, index, endIndex: index + node.value.length, result, ruleName, fix: { apply: fix, node: decl, }, }); }); }); }; }; rule.ruleName = ruleName; rule.messages = messages; rule.meta = meta; export default rule;