From 05c6411dea6675d994cd0574c317b62474d3ec65 Mon Sep 17 00:00:00 2001 From: "Marcus R. Brown" Date: Sun, 17 Mar 2024 23:52:21 -0700 Subject: [PATCH] chore(markdownlint): ignore `.changeset` folder (#150) --- .markdownlint-cli2.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index f43787f9..c22c336a 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -3,9 +3,9 @@ config: MD013: false MD033: allowed_elements: [a, h3, img, p] -# MD041: false + MD041: false globs: - '**/*.md' - - '!.changeset' + - '!.changeset/**' - '!**/node_modules'