116 lines
2.9 KiB
JavaScript
116 lines
2.9 KiB
JavaScript
// 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 nodeFieldIndices = require('../../utils/nodeFieldIndices.cjs');
|
|
const getDimension = require('../../utils/getDimension.cjs');
|
|
const validateTypes = require('../../utils/validateTypes.cjs');
|
|
const matchesStringOrRegExp = require('../../utils/matchesStringOrRegExp.cjs');
|
|
const optionsMatches = require('../../utils/optionsMatches.cjs');
|
|
const report = require('../../utils/report.cjs');
|
|
const ruleMessages = require('../../utils/ruleMessages.cjs');
|
|
const validateObjectWithArrayProps = require('../../utils/validateObjectWithArrayProps.cjs');
|
|
const validateOptions = require('../../utils/validateOptions.cjs');
|
|
const vendor = require('../../utils/vendor.cjs');
|
|
|
|
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').CoreRules[ruleName]} */
|
|
const rule = (primary, secondaryOptions) => {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(
|
|
result,
|
|
ruleName,
|
|
{
|
|
actual: primary,
|
|
possible: [validateObjectWithArrayProps(validateTypes.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 = nodeFieldIndices.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;
|