From 4e98308c9f64f62e40282d01bf54b3654f3010ce Mon Sep 17 00:00:00 2001 From: svrnm Date: Wed, 31 Jul 2024 11:22:10 +0200 Subject: [PATCH] fix format Signed-off-by: svrnm --- gulp-src/validate-registry.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gulp-src/validate-registry.js b/gulp-src/validate-registry.js index 86a71327f75e..f2ff5553dbdf 100644 --- a/gulp-src/validate-registry.js +++ b/gulp-src/validate-registry.js @@ -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++; } }