Skip to content

Commit 6c0cabc

Browse files
ashleyshawCopilot
andauthored
Apply suggestion from @Copilot
Co-authored-by: Copilot <[email protected]> Signed-off-by: Ash Shaw <[email protected]>
1 parent 7f54a18 commit 6c0cabc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/validate-frontmatter.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,5 @@ const validate = ajv.compile(schema);
1414
const files = glob.sync('**/*.md', { ignore: ['node_modules/**'] });
1515

1616
let errors = 0;
17-
for (const f of files) {
18-
// Extract and validate front-matter here (placeholder)
19-
}
17+
// TODO: For each file in `files`, extract and validate front-matter here.
2018
if (errors > 0) process.exit(1);

0 commit comments

Comments
 (0)