mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-19 20:45:35 +00:00
134 lines
3.5 KiB
JavaScript
134 lines
3.5 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 knownCssProperties = require('known-css-properties');
|
|
const typeGuards = require('../../utils/typeGuards.cjs');
|
|
const validateTypes = require('../../utils/validateTypes.cjs');
|
|
const findNodeUpToRoot = require('../../utils/findNodeUpToRoot.cjs');
|
|
const isCustomProperty = require('../../utils/isCustomProperty.cjs');
|
|
const isDescriptorDeclaration = require('../../utils/isDescriptorDeclaration.cjs');
|
|
const isStandardSyntaxDeclaration = require('../../utils/isStandardSyntaxDeclaration.cjs');
|
|
const isStandardSyntaxProperty = require('../../utils/isStandardSyntaxProperty.cjs');
|
|
const optionsMatches = require('../../utils/optionsMatches.cjs');
|
|
const report = require('../../utils/report.cjs');
|
|
const ruleMessages = require('../../utils/ruleMessages.cjs');
|
|
const validateOptions = require('../../utils/validateOptions.cjs');
|
|
const vendor = require('../../utils/vendor.cjs');
|
|
|
|
const ruleName = 'property-no-unknown';
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: (property) => `Unexpected unknown property "${property}"`,
|
|
});
|
|
|
|
const meta = {
|
|
url: 'https://stylelint.io/user-guide/rules/property-no-unknown',
|
|
};
|
|
|
|
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
const rule = (primary, secondaryOptions) => {
|
|
const allValidProperties = new Set(knownCssProperties.all);
|
|
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(
|
|
result,
|
|
ruleName,
|
|
{ actual: primary },
|
|
{
|
|
actual: secondaryOptions,
|
|
possible: {
|
|
ignoreProperties: [validateTypes.isString, validateTypes.isRegExp],
|
|
checkPrefixed: [validateTypes.isBoolean],
|
|
ignoreSelectors: [validateTypes.isString, validateTypes.isRegExp],
|
|
ignoreAtRules: [validateTypes.isString, validateTypes.isRegExp],
|
|
},
|
|
optional: true,
|
|
},
|
|
);
|
|
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
const shouldCheckPrefixed = secondaryOptions && secondaryOptions.checkPrefixed;
|
|
|
|
const languageProperties = result.stylelint.config?.languageOptions?.syntax?.properties || {};
|
|
const configuredPropertyNames = new Set(Object.keys(languageProperties));
|
|
|
|
root.walkDecls(checkStatement);
|
|
|
|
/**
|
|
* @param {import('postcss').Declaration} decl
|
|
*/
|
|
function checkStatement(decl) {
|
|
const prop = decl.prop;
|
|
|
|
if (!isStandardSyntaxDeclaration(decl)) {
|
|
return;
|
|
}
|
|
|
|
if (isDescriptorDeclaration(decl)) {
|
|
return;
|
|
}
|
|
|
|
if (!isStandardSyntaxProperty(prop)) {
|
|
return;
|
|
}
|
|
|
|
if (isCustomProperty(prop)) {
|
|
return;
|
|
}
|
|
|
|
if (!shouldCheckPrefixed && vendor.prefix(prop)) {
|
|
return;
|
|
}
|
|
|
|
if (configuredPropertyNames.has(prop)) {
|
|
return;
|
|
}
|
|
|
|
if (optionsMatches(secondaryOptions, 'ignoreProperties', prop)) {
|
|
return;
|
|
}
|
|
|
|
const parent = decl.parent;
|
|
|
|
if (
|
|
parent &&
|
|
typeGuards.isRule(parent) &&
|
|
optionsMatches(secondaryOptions, 'ignoreSelectors', parent.selector)
|
|
) {
|
|
return;
|
|
}
|
|
|
|
/** @type {(node: import('postcss').Node) => boolean} */
|
|
const isIgnoredAtRule = (node) =>
|
|
typeGuards.isAtRule(node) && optionsMatches(secondaryOptions, 'ignoreAtRules', node.name);
|
|
|
|
if (findNodeUpToRoot(decl, isIgnoredAtRule)) {
|
|
return;
|
|
}
|
|
|
|
if (allValidProperties.has(prop.toLowerCase())) {
|
|
return;
|
|
}
|
|
|
|
report({
|
|
message: messages.rejected,
|
|
messageArgs: [prop],
|
|
node: decl,
|
|
result,
|
|
ruleName,
|
|
word: prop,
|
|
});
|
|
}
|
|
};
|
|
};
|
|
|
|
rule.ruleName = ruleName;
|
|
rule.messages = messages;
|
|
rule.meta = meta;
|
|
|
|
module.exports = rule;
|