UNPKG

stylelint-scss

Version:

A collection of SCSS specific rules for stylelint

15 lines (11 loc) 244 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function (selector) { // SCSS or Less interpolation if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(selector)) { return false; } return true; };