96 lines
2.4 KiB
JavaScript
96 lines
2.4 KiB
JavaScript
'use strict';
|
|
|
|
const valueParser = require('postcss-value-parser');
|
|
|
|
const declarationValueIndex = require('../../utils/declarationValueIndex');
|
|
const getDimension = require('../../utils/getDimension');
|
|
const matchesStringOrRegExp = require('../../utils/matchesStringOrRegExp');
|
|
const report = require('../../utils/report');
|
|
const ruleMessages = require('../../utils/ruleMessages');
|
|
const validateObjectWithArrayProps = require('../../utils/validateObjectWithArrayProps');
|
|
const validateOptions = require('../../utils/validateOptions');
|
|
const { isString } = require('../../utils/validateTypes');
|
|
const vendor = require('../../utils/vendor');
|
|
|
|
const ruleName = 'declaration-property-unit-disallowed-list';
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: (property, unit) => `Unexpected unit "${unit}" for property "${property}"`,
|
|
});
|
|
|
|
const meta = {
|
|
url: 'https://stylelint.io/user-guide/rules/declaration-property-unit-disallowed-list',
|
|
};
|
|
|
|
/** @type {import('stylelint').Rule<Record<string, string | string[]>>} */
|
|
const rule = (primary) => {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, {
|
|
actual: primary,
|
|
possible: [validateObjectWithArrayProps(isString)],
|
|
});
|
|
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
root.walkDecls((decl) => {
|
|
const prop = decl.prop;
|
|
const value = decl.value;
|
|
|
|
const unprefixedProp = vendor.unprefixed(prop);
|
|
|
|
const propKey = Object.keys(primary).find((propIdentifier) =>
|
|
matchesStringOrRegExp(unprefixedProp, propIdentifier),
|
|
);
|
|
|
|
if (!propKey) {
|
|
return;
|
|
}
|
|
|
|
const propValue = primary[propKey];
|
|
|
|
if (!propValue) {
|
|
return;
|
|
}
|
|
|
|
const propList = new Set([propValue].flat());
|
|
|
|
valueParser(value).walk((node) => {
|
|
// Ignore wrong units within `url` function
|
|
if (node.type === 'function' && node.value.toLowerCase() === 'url') {
|
|
return false;
|
|
}
|
|
|
|
if (node.type === 'string') {
|
|
return;
|
|
}
|
|
|
|
const { unit } = getDimension(node);
|
|
|
|
if (!unit || !propList.has(unit.toLowerCase())) {
|
|
return;
|
|
}
|
|
|
|
const index = declarationValueIndex(decl) + node.sourceIndex;
|
|
const endIndex = index + node.value.length;
|
|
|
|
report({
|
|
message: messages.rejected,
|
|
messageArgs: [prop, unit],
|
|
node: decl,
|
|
index,
|
|
endIndex,
|
|
result,
|
|
ruleName,
|
|
});
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
rule.ruleName = ruleName;
|
|
rule.messages = messages;
|
|
rule.meta = meta;
|
|
module.exports = rule;
|