Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
anshgoyalevil committed Oct 18, 2024
1 parent 1fb8b0e commit 607c9e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/markdown/check-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function checkMarkdownFiles(folderPath, validateFunction, relativePath = '') {
const errors = validateFunction(frontmatter);
if (errors) {
console.log(`Errors in file ${relativeFilePath}:`);
errors.forEach(error => console.log(`${error}\n`));
errors.forEach(error => console.log(` - ${error}`));
process.exitCode = 1;
}
}
Expand Down

0 comments on commit 607c9e9

Please sign in to comment.