UNPKG

stylelint-order

Version:

A collection of order related linting rules for Stylelint.

8 lines (6 loc) 148 B
/** * Check whether a property is a @-variable (Less) */ export function isAtVariable(node) { return node.type === 'atrule' && node.variable; }