stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
78 lines (58 loc) • 1.99 kB
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const valueParser = require('postcss-value-parser');
const nodeFieldIndices = require('../../utils/nodeFieldIndices.cjs');
const isStandardSyntaxHexColor = require('../../utils/isStandardSyntaxHexColor.cjs');
const isValidHex = require('../../utils/isValidHex.cjs');
const report = require('../../utils/report.cjs');
const ruleMessages = require('../../utils/ruleMessages.cjs');
const validateOptions = require('../../utils/validateOptions.cjs');
const ruleName = 'color-no-invalid-hex';
const messages = ruleMessages(ruleName, {
rejected: (hex) => `Unexpected invalid hex color "${hex}"`,
});
const meta = {
url: 'https://stylelint.io/user-guide/rules/color-no-invalid-hex',
};
const CONTAINS_HEX = /#[\da-z]+/i;
/** @type {import('stylelint').CoreRules[ruleName]} */
const rule = (primary) => {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, { actual: primary });
if (!validOptions) {
return;
}
root.walkDecls((decl) => {
if (!isStandardSyntaxHexColor(decl.value)) {
return;
}
if (!CONTAINS_HEX.test(decl.value)) {
return;
}
valueParser(decl.value).walk(({ value, type, sourceIndex }) => {
if (type === 'function' && value.endsWith('url')) return false;
if (type !== 'word') return;
const hexMatch = /^#[\da-z]+/i.exec(value);
if (!hexMatch) return;
const hexValue = hexMatch[0];
if (!hexValue || isValidHex(hexValue)) return;
const index = nodeFieldIndices.declarationValueIndex(decl) + sourceIndex;
const endIndex = index + hexValue.length;
report({
message: messages.rejected,
messageArgs: [hexValue],
node: decl,
index,
endIndex,
result,
ruleName,
});
});
});
};
};
rule.ruleName = ruleName;
rule.messages = messages;
rule.meta = meta;
module.exports = rule;