mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:37:16 -04:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.messages = exports.ruleName = undefined;
|
|
|
|
exports.default = function (expectation) {
|
|
return function (root, result) {
|
|
var validOptions = _stylelint.utils.validateOptions(result, ruleName, {
|
|
actual: expectation,
|
|
possible: ["always", "never"]
|
|
});
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
var comments = (0, _utils.findCommentsInRaws)(root.source.input.css);
|
|
comments.forEach(function (comment) {
|
|
// Only process // comments
|
|
if (comment.type !== "double-slash") {
|
|
return;
|
|
}
|
|
// if it's `//` - no warning whatsoever; if `// ` - then trailing
|
|
// whitespace rule will govern this
|
|
if (comment.text === "") {
|
|
return;
|
|
}
|
|
|
|
var message = void 0;
|
|
|
|
if (expectation === "never" && comment.raws.left !== "") {
|
|
message = messages.rejected;
|
|
} else if (comment.raws.left === "" && expectation === "always") {
|
|
message = messages.expected;
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
_stylelint.utils.report({
|
|
message: message,
|
|
node: root,
|
|
index: comment.source.start + comment.raws.startToken.length,
|
|
result: result,
|
|
ruleName: ruleName
|
|
});
|
|
});
|
|
};
|
|
};
|
|
|
|
var _utils = require("../../utils");
|
|
|
|
var _stylelint = require("stylelint");
|
|
|
|
var ruleName = exports.ruleName = (0, _utils.namespace)("double-slash-comment-whitespace-inside");
|
|
|
|
var messages = exports.messages = _stylelint.utils.ruleMessages(ruleName, {
|
|
expected: "Expected a space after //",
|
|
rejected: "Unexpected space after //"
|
|
}); |