UNPKG

@udyux/stylelint-order

Version:

[fork] A collection of order related linting rules for stylelint.

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