mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 06:27:23 -04:00
91 lines
2.4 KiB
JavaScript
91 lines
2.4 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.messages = exports.ruleName = undefined;
|
||
|
|
||
|
exports.default = function (expectation, options) {
|
||
|
return function (root, result) {
|
||
|
var validOptions = _stylelint.utils.validateOptions(result, ruleName, {
|
||
|
actual: expectation,
|
||
|
possible: ["always", "never"]
|
||
|
}, {
|
||
|
actual: options,
|
||
|
possible: {
|
||
|
except: ["first-nested"],
|
||
|
ignore: ["stylelint-commands", "between-comments"]
|
||
|
},
|
||
|
optional: true
|
||
|
});
|
||
|
if (!validOptions) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
root.walkComments(function (comment) {
|
||
|
|
||
|
// Only process // comments
|
||
|
if (!comment.raws.inline && !comment.inline) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ((0, _utils.isInlineComment)(comment)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Ignore the first node
|
||
|
if (comment === root.first) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Optionally ignore stylelint commands
|
||
|
if (comment.text.indexOf(stylelintCommandPrefix) === 0 && (0, _utils.optionsHaveIgnored)(options, "stylelint-commands")) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Optionally ignore newlines between comments
|
||
|
var prev = comment.prev();
|
||
|
if (prev && prev.type === "comment" && (0, _utils.optionsHaveIgnored)(options, "between-comments")) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var before = comment.raw("before");
|
||
|
|
||
|
var expectEmptyLineBefore = function () {
|
||
|
if ((0, _utils.optionsHaveException)(options, "first-nested") && comment.parent !== root && comment === comment.parent.first) {
|
||
|
return false;
|
||
|
}
|
||
|
return expectation === "always";
|
||
|
}();
|
||
|
|
||
|
var hasEmptyLineBefore = before.search(/\n\s*?\n/) !== -1;
|
||
|
|
||
|
// Return if the expectation is met
|
||
|
if (expectEmptyLineBefore === hasEmptyLineBefore) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var message = expectEmptyLineBefore ? messages.expected : messages.rejected;
|
||
|
|
||
|
_stylelint.utils.report({
|
||
|
message: message,
|
||
|
node: comment,
|
||
|
result: result,
|
||
|
ruleName: ruleName
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
};
|
||
|
|
||
|
var _utils = require("../../utils");
|
||
|
|
||
|
var _stylelint = require("stylelint");
|
||
|
|
||
|
var ruleName = exports.ruleName = (0, _utils.namespace)("double-slash-comment-empty-line-before");
|
||
|
|
||
|
var messages = exports.messages = _stylelint.utils.ruleMessages(ruleName, {
|
||
|
expected: "Expected empty line before comment",
|
||
|
rejected: "Unexpected empty line before comment"
|
||
|
});
|
||
|
|
||
|
var stylelintCommandPrefix = "stylelint-";
|