UNPKG

stylelint-sassdoc

Version:

stylelint plugin to check scss files for a valid sassdoc documentation Credits to https://github.com/anneangersbach

7 lines (6 loc) 224 B
/** Returns true if the node is a variable declaration ($variable) * @param {Node} node - the current root node */ module.exports = function isVariableDeclaration(node) { return (node.prop && node.prop[0] === '$'); };