114 lines
2.7 KiB
JavaScript
114 lines
2.7 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 optionsMatches = require('../../utils/optionsMatches');
|
||
|
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-allowed-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-allowed-list',
|
||
|
};
|
||
|
|
||
|
/** @type {import('stylelint').Rule<Record<string, string | string[]>>} */
|
||
|
const rule = (primary, secondaryOptions) => {
|
||
|
return (root, result) => {
|
||
|
const validOptions = validateOptions(
|
||
|
result,
|
||
|
ruleName,
|
||
|
{
|
||
|
actual: primary,
|
||
|
possible: [validateObjectWithArrayProps(isString)],
|
||
|
},
|
||
|
{
|
||
|
actual: secondaryOptions,
|
||
|
possible: {
|
||
|
ignore: ['inside-function'],
|
||
|
},
|
||
|
optional: true,
|
||
|
},
|
||
|
);
|
||
|
|
||
|
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') {
|
||
|
if (node.value.toLowerCase() === 'url') {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (optionsMatches(secondaryOptions, 'ignore', 'inside-function')) {
|
||
|
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;
|