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 a48383b commit 5c0053fCopy full SHA for 5c0053f
src/Security/CheckRunner.js
@@ -142,7 +142,7 @@ class CheckRunner {
142
143
// Traverse all groups and checks for compose output
144
for (const group of report.report.groups) {
145
- output += `- ${group.name}`
+ output += `\n- ${group.name}`
146
147
for (const check of group.checks) {
148
checksCount++;
@@ -170,7 +170,7 @@ class CheckRunner {
170
`\n${checksCount} check(s) executed` +
171
`\n${skippedCheckCount} check(s) skipped` +
172
`\n` +
173
- `\n${output}\n`;
+ `${output}`;
174
175
// Write log
176
log(output);
0 commit comments