From 8a2af285b696496116413856fe3287ddc107ee96 Mon Sep 17 00:00:00 2001 From: Andy Caruso Date: Fri, 23 Aug 2024 15:00:26 -0700 Subject: [PATCH] add config file --- spellcheck.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/spellcheck.yaml b/spellcheck.yaml index dd58042e..ea15b6ea 100644 --- a/spellcheck.yaml +++ b/spellcheck.yaml @@ -12,16 +12,12 @@ matrix: # List of words to ignore ignore-words: - Ganymede - # List of patterns to ignore - ignore-regex: # Locale setting (e.g., en_US for American English) dictionary: locale: en_US # Define custom filters for specific file types - filters: - # Apply a specific filter for .mdx files - mdx: - - markdown: - strip-html: true # Strips HTML tags - strip-raw: true # Strips raw content (e.g., code blocks) - ignore-math: true # Ignores LaTeX/math expressions \ No newline at end of file + pipeline: + - pyspelling.filters.markdown: + strip-html: true + strip-raw: true + ignore-math: true \ No newline at end of file