UNPKG

stylelint-order

Version:

A collection of order related linting rules for Stylelint.

8 lines (6 loc) 137 B
/** * Check whether a property is a Less mixin */ export function isLessMixin(node) { return node.type === 'atrule' && node.mixin; }