Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
Signed-off-by: svrnm <[email protected]>
  • Loading branch information
svrnm committed Jul 31, 2024
1 parent 41387f9 commit 4e98308
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gulp-src/validate-registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,12 @@ function validateRegistryEntry(file, enc, cb) {
);
} else {
console.log(error);
console.error(`${logLevel} in ${file.path}:${lineNumber}: ${error.message}`);
console.error(
`${logLevel} in ${file.path}:${lineNumber}: ${error.message}`,
);
}
}
if(hasErrors) {
if (hasErrors) {
numFilesWithIssues++;
}
}
Expand Down

0 comments on commit 4e98308

Please sign in to comment.