UNPKG

stylelint

Version:

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

98 lines (78 loc) 2.61 kB
// 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 valueParser = require('postcss-value-parser'); const hasPrefix = require('../../utils/hasPrefix.cjs'); const isAutoprefixable = require('../../utils/isAutoprefixable.cjs'); const isStandardSyntaxDeclaration = require('../../utils/isStandardSyntaxDeclaration.cjs'); const isStandardSyntaxProperty = require('../../utils/isStandardSyntaxProperty.cjs'); const validateTypes = require('../../utils/validateTypes.cjs'); const optionsMatches = require('../../utils/optionsMatches.cjs'); const report = require('../../utils/report.cjs'); const ruleMessages = require('../../utils/ruleMessages.cjs'); const setDeclarationValue = require('../../utils/setDeclarationValue.cjs'); const validateOptions = require('../../utils/validateOptions.cjs'); const vendor = require('../../utils/vendor.cjs'); const ruleName = 'value-no-vendor-prefix'; const messages = ruleMessages(ruleName, { rejected: (value) => `Unexpected vendor-prefix "${value}"`, }); const meta = { url: 'https://stylelint.io/user-guide/rules/value-no-vendor-prefix', fixable: true, }; /** @type {import('stylelint').Rule} */ const rule = (primary, secondaryOptions, context) => { return (root, result) => { const validOptions = validateOptions( result, ruleName, { actual: primary }, { optional: true, actual: secondaryOptions, possible: { ignoreValues: [validateTypes.isString], }, }, ); if (!validOptions) { return; } root.walkDecls((decl) => { const { value } = decl; if (!hasPrefix(value)) return; if (!isStandardSyntaxDeclaration(decl) || !isStandardSyntaxProperty(decl.prop)) { return; } if (optionsMatches(secondaryOptions, 'ignoreValues', vendor.unprefixed(value))) { return; } const parsedValue = valueParser(value); parsedValue.walk((node) => { if (!isAutoprefixable.propertyValue(node.value)) { return; } if (context.fix) { node.value = isAutoprefixable.unprefix(node.value); return; } const startIndex = decl.prop.length + (decl.raws.between || '').length + node.sourceIndex; report({ message: messages.rejected, messageArgs: [node.value], node: decl, index: startIndex, endIndex: startIndex + node.value.length, result, ruleName, }); }); setDeclarationValue(decl, parsedValue.toString()); }); }; }; rule.ruleName = ruleName; rule.messages = messages; rule.meta = meta; module.exports = rule;