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
console.warn(`Ignoring ${diff} files because the file extension did not match the detected language ${this.language!.name}. Specify the language explicitly to avoid this.`);
142
+
warnings.push(
143
+
`The language of the files was detected as ${this.language?.name} `+
144
+
`but ${diff} files were ignored because they did not have a matching extension.`
145
+
);
129
146
}
130
-
files=filteredFiles;
147
+
}else{
148
+
filteredFiles=files;
131
149
}
132
150
133
151
if(files.length<2){
@@ -138,6 +156,18 @@ export class Dolos {
138
156
"be present in 100% of the files. This option does only"+
139
157
"make sense when comparing more than two files.");
0 commit comments