From 075471cb79f189b8e6e32d11c0be396d78c710a5 Mon Sep 17 00:00:00 2001 From: Ben Cromwell <683855+bencromwell@users.noreply.github.com> Date: Thu, 14 Nov 2024 08:14:01 +0000 Subject: [PATCH] fix: ignore code blocks --- .vale.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vale.ini b/.vale.ini index 7801aef..49e250e 100644 --- a/.vale.ini +++ b/.vale.ini @@ -25,3 +25,6 @@ mdx = md BlockIgnores = (?s) *(<[^>]*>) BlockIgnores = (?s) *(import.*?\n) BlockIgnores = (?s) *(export.*?\)) +# Do not attempt to lint code, triple-backtick delimited or single backtick delimited +BlockIgnores = ```[a-z]*[\s\S]*?\n``` +BlockIgnores = `[a-z]*[\s\S]*?\n`