UNPKG

stylelint-scss

Version:

A collection of SCSS specific rules for stylelint

55 lines (43 loc) 1.67 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.messages = exports.ruleName = undefined; exports.default = function (actual) { return function (root, result) { var validOptions = _stylelint.utils.validateOptions(result, ruleName, { actual: actual }); if (!validOptions) { return; } function checkPathForUnderscore(path, decl) { // Stripping trailing quotes and whitespaces, if any var pathStripped = path.replace(/^\s*?("|')\s*/, "").replace(/\s*("|')\s*?$/, ""); // Searching a _ at the start of filename if (pathStripped.search(/(?:^|\/|\\)_[^/]+$/) === -1) { return; } // Skipping importing CSS: url(), ".css", URI with a protocol, media if (pathStripped.slice(0, 4) === "url(" || pathStripped.slice(-4) === ".css" || pathStripped.search("//") !== -1 || pathStripped.search(/(?:\s|[,)"'])\w+$/) !== -1) { return; } _stylelint.utils.report({ message: messages.expected, node: decl, result: result, ruleName: ruleName }); } root.walkAtRules("import", function (decl) { // Processing comma-separated lists of import paths decl.params.split(",").forEach(function (path) { checkPathForUnderscore(path, decl); }); }); }; }; var _stylelint = require("stylelint"); var _utils = require("../../utils"); var ruleName = exports.ruleName = (0, _utils.namespace)("at-import-no-partial-leading-underscore"); var messages = exports.messages = _stylelint.utils.ruleMessages(ruleName, { expected: "Unexpected leading underscore in imported partial name" });