UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

11 lines (9 loc) 196 B
"use strict"; /** * Check whether a string has postcss-simple-vars interpolation * * @param {string} string */ module.exports = function (string) { return /\$\([\s\S]*?\)/.test(string); };