More changes to make markdownlint work again

This commit is contained in:
Ben Edgington
2025-02-18 11:35:17 +00:00
parent 0eeafc7fce
commit 3cb6532b20
2 changed files with 7 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ function runCheck(
}
// Set `exitToShell` to false to continue processing after running checks (e.g. while building)
export const runChecks = (reporter = customReporter, exitToShell = true) => {
const runChecks = (reporter = customReporter, exitToShell = true) => {
var allOk = true
@@ -172,3 +172,5 @@ export const runChecks = (reporter = customReporter, exitToShell = true) => {
process.exit(allOk ? 0 : 2)
}
}
export default runChecks