We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d48c643 commit 10ef0e2Copy full SHA for 10ef0e2
src/prompts/body-maker.ts
@@ -26,8 +26,8 @@ export function filterFactory(rules: Rules) {
26
return (value: string) =>
27
pipeWith<string>(
28
value,
29
- v => leadingBlankFilter(v, rules['body-leading-blank']),
30
v => maxLineLengthFilter(v, rules['body-max-line-length']),
+ v => leadingBlankFilter(v, rules['body-leading-blank']),
31
v => v.replace(/\\n/g, '\n')
32
);
33
}
0 commit comments