const iter = walkSync(projectFolder, {
skip: [
/node_modules/,
/.git/,
/static/,
/lang/,
],
});
for (const entry of iter) {
if (entry.isFile) {
const content = Deno.readTextFileSync(entry.path);
checkContent(content);
}
}
const iter = walkSync(projectFolder, {
skip: [
/node_modules/,
/.git/,
/static/,
/lang/,
],
});
for (const entry of iter) {
if (entry.isFile) {
const content = Deno.readTextFileSync(entry.path);
checkContent(content);
}
}