stylelint
Version:
Modern CSS linter
56 lines (44 loc) • 1.59 kB
JavaScript
import { vendor } from "postcss"
import { isObject, find } from "lodash"
import valueParser from "postcss-value-parser"
import {
declarationValueIndex,
getUnitFromValueNode,
report,
ruleMessages,
validateOptions,
matchesStringOrRegExp,
} from "../../utils"
export const ruleName = "declaration-property-unit-whitelist"
export const messages = ruleMessages(ruleName, {
rejected: (property, unit) => `Unexpected unit "${unit}" for property "${property}"`,
})
export default function (whitelist) {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, {
actual: whitelist,
possible: [isObject],
})
if (!validOptions) { return }
root.walkDecls(decl => {
const { prop, value } = decl
const unprefixedProp = vendor.unprefixed(prop)
const propWhitelist = find(whitelist, (list, propIdentifier) => matchesStringOrRegExp(unprefixedProp, propIdentifier))
if (!propWhitelist) { return }
valueParser(value).walk(function (node) {
// Ignore wrong units within `url` function
if (node.type === "function" && node.value.toLowerCase() === "url") { return false }
if (node.type === "string") { return }
const unit = getUnitFromValueNode(node)
if (!unit || (unit && propWhitelist.indexOf(unit.toLowerCase())) !== -1) { return }
report({
message: messages.rejected(prop, unit),
node: decl,
index: declarationValueIndex(decl) + node.sourceIndex,
result,
ruleName,
})
})
})
}
}