Skip to content

Commit

Permalink
Update lint-md.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Jun 8, 2024
1 parent 79d8ea4 commit 4ac0828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp-src/lint-md.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const defaultGlob = '**/*.md';
const markdownFiles = [
'!.github/**',
'!content-modules/**',
'!examples/**',
'!examples/go/**',
'!layouts/**',
'!node_modules/**',
'!scripts/registry-scanner/node_modules/**',
Expand Down Expand Up @@ -154,7 +154,7 @@ function lintMarkdown() {
fix = argv.fix;

return gulp
.src([argv.glob, ...markdownFiles])
.src([argv.glob, ...markdownFiles], { followSymlinks: false })
.pipe(through2.obj(markdownLintFile))
.on('end', () => {
const fileOrFiles = 'file' + (numFilesProcessed == 1 ? '' : 's');
Expand Down

0 comments on commit 4ac0828

Please sign in to comment.