From 29435708bfc561dff65807525abfd377a165351f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20Wytr=C4=99bowicz?= Date: Fri, 25 Mar 2022 11:50:09 +0100 Subject: [PATCH] Add `vendor/` to `.markdownlintignore` (#39724) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add `vendor/` to `.markdownlintignore` for wp-scripts, to match the documented behavior https://developer.wordpress.org/block-editor/reference-guides/packages/packages-scripts/#lint-md-docs * Add changelog entry. Addresses https://github.com/WordPress/gutenberg/pull/39724#pullrequestreview-920898201. * Update CHANGELOG.md Co-authored-by: Greg Ziółkowski --- packages/scripts/CHANGELOG.md | 4 ++++ packages/scripts/config/.markdownlintignore | 1 + 2 files changed, 5 insertions(+) diff --git a/packages/scripts/CHANGELOG.md b/packages/scripts/CHANGELOG.md index 3bbe09827dc74..a4ad7a45106f3 100644 --- a/packages/scripts/CHANGELOG.md +++ b/packages/scripts/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Bug Fix + +- Add `vendor/` to `.markdownlintignore`, to match `lint-md-docs` docs ([#39724](https://github.com/WordPress/gutenberg/pull/39724)). + ## 22.2.0 (2022-03-11) ### Enhancement diff --git a/packages/scripts/config/.markdownlintignore b/packages/scripts/config/.markdownlintignore index c12917482a31e..8de72900ecc35 100644 --- a/packages/scripts/config/.markdownlintignore +++ b/packages/scripts/config/.markdownlintignore @@ -1,2 +1,3 @@ **/build/** **/node_modules/** +**/vendor/**