mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 08:17:34 -04:00
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.messages = exports.ruleName = undefined;
|
|
|
|
exports.default = function (on) {
|
|
return function (root, result) {
|
|
var validOptions = _stylelint.utils.validateOptions(result, ruleName, {
|
|
actual: on
|
|
});
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
if (root.source.input.file === undefined || !root.source.input.file) {
|
|
result.warn("The 'partial-no-import' rule won't work if linting in a code string without an actual file.");
|
|
return;
|
|
}
|
|
|
|
var fileName = _path2.default.basename(root.source.input.file);
|
|
var extName = _path2.default.extname(root.source.input.file);
|
|
|
|
function checkImportForCSS(path, decl) {
|
|
// Stripping trailing quotes and whitespaces, if any
|
|
var pathStripped = path.replace(/^\s*?("|')\s*/, "").replace(/\s*("|')\s*?$/, "");
|
|
|
|
// 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
|
|
});
|
|
}
|
|
|
|
// Usual CSS file
|
|
if (extName === ".css") {
|
|
return;
|
|
}
|
|
// Not a partial
|
|
if (fileName[0] !== "_") {
|
|
return;
|
|
}
|
|
|
|
root.walkAtRules("import", function (mixinCall) {
|
|
// Check if @import is treated as CSS import; report only if not
|
|
// Processing comma-separated lists of import paths
|
|
mixinCall.params.split(",").forEach(function (path) {
|
|
checkImportForCSS(path, mixinCall);
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
var _stylelint = require("stylelint");
|
|
|
|
var _utils = require("../../utils");
|
|
|
|
var _path = require("path");
|
|
|
|
var _path2 = _interopRequireDefault(_path);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
var ruleName = exports.ruleName = (0, _utils.namespace)("partial-no-import");
|
|
|
|
var messages = exports.messages = _stylelint.utils.ruleMessages(ruleName, {
|
|
expected: "Unexpected @import in a partial"
|
|
}); |