stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
80 lines (61 loc) • 2.13 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 hasValidHex = require('../../utils/hasValidHex.cjs');
const isHexColor = require('../../utils/isHexColor.cjs');
const isUrlFunction = require('../../utils/isUrlFunction.cjs');
const report = require('../../utils/report.cjs');
const ruleMessages = require('../../utils/ruleMessages.cjs');
const validateOptions = require('../../utils/validateOptions.cjs');
const ruleName = 'color-hex-alpha';
const messages = ruleMessages(ruleName, {
expected: (hex) => `Expected alpha channel in "${hex}"`,
rejected: (hex) => `Unexpected alpha channel in "${hex}"`,
});
const meta = {
url: 'https://stylelint.io/user-guide/rules/color-hex-alpha',
};
/** @type {import('stylelint').CoreRules[ruleName]} */
const rule = (primary) => {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, {
actual: primary,
possible: ['always', 'never'],
});
if (!validOptions) return;
root.walkDecls((decl) => {
if (!hasValidHex(decl.value)) return;
const parsedValue = valueParser(decl.value);
parsedValue.walk((node) => {
if (isUrlFunction(node)) return false;
if (!isHexColor(node)) return;
const { value } = node;
if (primary === 'always' && hasAlphaChannel(value)) return;
if (primary === 'never' && !hasAlphaChannel(value)) return;
const index = nodeFieldIndices.declarationValueIndex(decl) + node.sourceIndex;
const endIndex = index + value.length;
report({
message: primary === 'never' ? messages.rejected : messages.expected,
messageArgs: [value],
node: decl,
index,
endIndex,
result,
ruleName,
});
});
});
};
};
/**
* @param {string} hex
*/
function hasAlphaChannel(hex) {
return hex.length === 5 || hex.length === 9;
}
rule.ruleName = ruleName;
rule.messages = messages;
rule.meta = meta;
module.exports = rule;