stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
25 lines (20 loc) • 721 B
JavaScript
import isStandardSyntaxFunction from './isStandardSyntaxFunction.mjs';
/**
* Check whether a function is standard syntax color function
*
* @param {import('postcss-value-parser').FunctionNode} node
* @returns {boolean}
*/
export default function isStandardSyntaxColorFunction(node) {
if (!isStandardSyntaxFunction(node)) return false;
// scss can accept a #hex, or $var variables and we need to check all nested fn nodes
for (const fnNode of node.nodes) {
if (fnNode.type === 'function') return isStandardSyntaxColorFunction(fnNode);
if (
fnNode.type === 'word' &&
(fnNode.value.startsWith('#') || fnNode.value.startsWith('$') || fnNode.value.includes('.$'))
)
return false;
}
return true;
}