Skip to content

Commit

Permalink
fix(format): add new line to result (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
escapedcat committed Dec 16, 2018
1 parent 8c0852d commit f1d443b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion @commitlint/format/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function formatResult(result = {}, options = {}) {
const decoration = enabled ? chalk[color](sign) : sign;
const summary = `${decoration} found ${errors.length} problems, ${
warnings.length
} warnings \n (Need help? -> https://github.com/marionebl/commitlint#what-is-commitlint)`;
} warnings \n (Need help? -> https://github.com/marionebl/commitlint#what-is-commitlint)\n\n`;
return [...problems, enabled ? chalk.bold(summary) : summary];
}

Expand Down
2 changes: 1 addition & 1 deletion @commitlint/format/src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import format from '.';
const ok = chalk.bold(
`${chalk.green(
'✔'
)} found 0 problems, 0 warnings \n (Need help? -> https://github.com/marionebl/commitlint#what-is-commitlint)`
)} found 0 problems, 0 warnings \n (Need help? -> https://github.com/marionebl/commitlint#what-is-commitlint)\n\n`
);

test('does nothing without arguments', t => {
Expand Down

0 comments on commit f1d443b

Please sign in to comment.