You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,18 +68,16 @@ if (process.env.ONLY_LANGUAGES) {
68
68
console.log('Checking auto-highlighting for '+colors.grey(languages.length)+' languages...');
69
69
languages.forEach((lang,index)=>{
70
70
if(index%60===0){console.log("");}
71
-
testAutoDetection(lang)
71
+
testAutoDetection(lang);
72
72
process.stdout.write(".");
73
73
});
74
-
console.log("\n")
74
+
console.log("\n");
75
75
76
76
if(resultTable.length===0){
77
-
console.log(colors.green('SUCCESS')+' - '+colors.green(languages.length)+' of '+colors.gray(languages.length)+' languages passed auto-highlight check!')
77
+
console.log(colors.green('SUCCESS')+' - '+colors.green(languages.length)+' of '+colors.gray(languages.length)+' languages passed auto-highlight check!');
78
78
}else{
79
79
console.log(
80
-
colors.red('ISSUES')+' - '+colors.red(resultTable.length)+' of '+colors.gray(languages.length)+' languages have potential issues.'+
81
-
'\n'+
82
-
resultTable.toString());
80
+
colors.red('ISSUES')+' - '+colors.red(resultTable.length)+' of '+colors.gray(languages.length)+' languages have potential issues.'
0 commit comments