I have a .spelling file at the root of my repo with a list of things in it. When I run the following it respects the .spelling file: npx mdspell -ran '**/*.md' '!**/node_modules/**/*.md' --en-us but it ignores the line in it to ignore the - CHANGELOG.md file
But when I try to add another exclusion such as npx mdspell -ran '**/*.md' '!CHANGELOG.md' '!**/node_modules/**/*.md' --en-us it doesn't work.
I have a
.spellingfile at the root of my repo with a list of things in it. When I run the following it respects the.spellingfile:npx mdspell -ran '**/*.md' '!**/node_modules/**/*.md' --en-usbut it ignores the line in it to ignore the- CHANGELOG.mdfileBut when I try to add another exclusion such as
npx mdspell -ran '**/*.md' '!CHANGELOG.md' '!**/node_modules/**/*.md' --en-usit doesn't work.