You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.footerLeadingBlank = void 0;
|
|
const to_lines_1 = __importDefault(require("@commitlint/to-lines"));
|
|
const message_1 = __importDefault(require("@commitlint/message"));
|
|
const footerLeadingBlank = (parsed, when = 'always') => {
|
|
// Flunk if no footer is found
|
|
if (!parsed.footer) {
|
|
return [true];
|
|
}
|
|
const negated = when === 'never';
|
|
const rawLines = (0, to_lines_1.default)(parsed.raw);
|
|
const footerLines = (0, to_lines_1.default)(parsed.footer);
|
|
const footerOffset = rawLines.indexOf(footerLines[0]);
|
|
const [leading] = rawLines.slice(footerOffset - 1);
|
|
// Check if the first line of footer is empty
|
|
const succeeds = leading === '';
|
|
return [
|
|
negated ? !succeeds : succeeds,
|
|
(0, message_1.default)([
|
|
'footer',
|
|
negated ? 'may not' : 'must',
|
|
'have leading blank line',
|
|
]),
|
|
];
|
|
};
|
|
exports.footerLeadingBlank = footerLeadingBlank;
|
|
//# sourceMappingURL=footer-leading-blank.js.map
|