mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
76 lines
2.2 KiB
JavaScript
76 lines
2.2 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 eachDeclarationBlock = require('../../utils/eachDeclarationBlock.cjs');
|
|
const report = require('../../utils/report.cjs');
|
|
const ruleMessages = require('../../utils/ruleMessages.cjs');
|
|
const uniteSets = require('../../utils/uniteSets.cjs');
|
|
const validateOptions = require('../../utils/validateOptions.cjs');
|
|
const vendor = require('../../utils/vendor.cjs');
|
|
const properties = require('../../reference/properties.cjs');
|
|
|
|
const ruleName = 'declaration-block-no-shorthand-property-overrides';
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: (shorthand, original) => `Unexpected shorthand "${shorthand}" after "${original}"`,
|
|
});
|
|
|
|
const meta = {
|
|
url: 'https://stylelint.io/user-guide/rules/declaration-block-no-shorthand-property-overrides',
|
|
};
|
|
|
|
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
const rule = (primary) => {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, { actual: primary });
|
|
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
eachDeclarationBlock(root, (eachDecl) => {
|
|
/** @type {Map<string, string>} */
|
|
const declarations = new Map();
|
|
|
|
eachDecl((decl) => {
|
|
const prop = decl.prop;
|
|
const unprefixedProp = vendor.unprefixed(prop).toLowerCase();
|
|
const prefix = vendor.prefix(prop).toLowerCase();
|
|
const subProperties = /** @type {Map<string, Set<string>>} */ (
|
|
properties.longhandSubPropertiesOfShorthandProperties
|
|
).get(unprefixedProp);
|
|
const resettables = properties.shorthandToResetToInitialProperty.get(unprefixedProp);
|
|
const union = uniteSets(subProperties ?? [], resettables ?? []);
|
|
|
|
declarations.set(prop.toLowerCase(), prop);
|
|
|
|
if (union.size === 0) return;
|
|
|
|
for (const property of union) {
|
|
const declaration = declarations.get(prefix + property);
|
|
|
|
if (!declaration) {
|
|
continue;
|
|
}
|
|
|
|
report({
|
|
ruleName,
|
|
result,
|
|
node: decl,
|
|
message: messages.rejected,
|
|
messageArgs: [prop, declaration || ''],
|
|
word: prop,
|
|
});
|
|
}
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
rule.ruleName = ruleName;
|
|
rule.messages = messages;
|
|
rule.meta = meta;
|
|
|
|
module.exports = rule;
|