fmt, fix check

This commit is contained in:
Lucas Nogueira
2024-02-21 13:32:37 -03:00
parent 569defbe94
commit e414579b31
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ const ignore = [
async function checkFile(file) {
if (
extensions.some((e) => file.endsWith(e)) &&
!ignore.some((i) => file.endsWith(i))
!ignore.some((i) => file.includes(`${path.sep}${i}`))
) {
const fileStream = fs.createReadStream(file);
const rl = readline.createInterface({
@@ -125,6 +125,6 @@ if (files.length > 0) {
console.log(missing.join("\n"));
process.exit(1);
}
},
}
);
}