We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c0cabc commit df335a5Copy full SHA for df335a5
scripts/validate-frontmatter.js
@@ -11,7 +11,7 @@ const schema = JSON.parse(fs.readFileSync('.github/automation/schemas/frontmatte
11
const validate = ajv.compile(schema);
12
13
// TODO: implement front-matter extraction (YAML header) for .md files
14
-const files = glob.sync('**/*.md', { ignore: ['node_modules/**'] });
+const files = glob.globSync('**/*.md', { ignore: ['node_modules/**'] });
15
16
let errors = 0;
17
// TODO: For each file in `files`, extract and validate front-matter here.
0 commit comments