UNPKG

@udyux/stylelint-order

Version:

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

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