stylelint-order
Version:
A collection of order related linting rules for Stylelint.
26 lines (21 loc) • 524 B
JavaScript
/**
* Check whether a property is standard
*
* @param {string} property
* @return {boolean} If `true`, the property is standard
*/
export function isStandardSyntaxProperty(property) {
// SCSS var (e.g. $var: x), list (e.g. $list: (x)) or map (e.g. $map: (key:value))
if (property.startsWith('$')) {
return false;
}
// Less var (e.g. @var: x)
if (property.startsWith('@')) {
return false;
}
// SCSS or Less interpolation
if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(property)) {
return false;
}
return true;
}