UNPKG

541 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.bodyMaxLineLength = void 0;
4const ensure_1 = require("@commitlint/ensure");
5const bodyMaxLineLength = (parsed, _when = undefined, value = 0) => {
6 const input = parsed.body;
7 if (!input) {
8 return [true];
9 }
10 return [
11 ensure_1.maxLineLength(input, value),
12 `body's lines must not be longer than ${value} characters`,
13 ];
14};
15exports.bodyMaxLineLength = bodyMaxLineLength;
16//# sourceMappingURL=body-max-line-length.js.map
\No newline at end of file