missed this

This commit is contained in:
zefie
2025-08-13 21:52:10 -04:00
parent cb68ae6dca
commit a6f29d6b6a
2 changed files with 3 additions and 3 deletions

View File

@@ -399,8 +399,8 @@ getFiles(__dirname)
} else {
// If no specific path, check all JS files as before
jsFiles = files.filter(file =>
path.extname(file) == ".js" &&
file.indexOf("node_modules") == -1
path.extname(file) === ".js" &&
file.indexOf("node_modules") === -1
);
console.log("Running syntax and scope checks on all JavaScript files...\n");
}