From 9ab8773c82cd698e017d06900aa9b94998fc9dd9 Mon Sep 17 00:00:00 2001 From: iamtodor Date: Sun, 5 Jun 2022 15:10:43 +0200 Subject: [PATCH 1/2] Update README.md add a clarification for https://github.com/igorshubovych/markdownlint-cli/issues/292 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0e571487..1307f453d 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Quoting the glob like `--ignore '*.md'` passes it through unexpanded and ignores #### Globbing examples -To lint all Markdown files in a Node.js project (excluding dependencies), the following commands might be used: +To lint all Markdown files recursively in a Node.js project (excluding dependencies), `*/**.md` wildcard comes in handy. The following commands might be used: Windows CMD: `markdownlint **/*.md --ignore node_modules` From 76bf9655d50e10cdc781a98cf396a3a1afd4cae9 Mon Sep 17 00:00:00 2001 From: iamtodor Date: Thu, 9 Jun 2022 22:08:27 +0200 Subject: [PATCH 2/2] Update README.md fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1307f453d..824c7c8df 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Quoting the glob like `--ignore '*.md'` passes it through unexpanded and ignores #### Globbing examples -To lint all Markdown files recursively in a Node.js project (excluding dependencies), `*/**.md` wildcard comes in handy. The following commands might be used: +To lint all Markdown files recursively in a Node.js project (excluding dependencies), `**/*.md` wildcard comes in handy. The following commands might be used: Windows CMD: `markdownlint **/*.md --ignore node_modules`