brobeson / SupportFileQuality

A reusable workflow to ensure quality in dot files
MIT License
0 stars 0 forks source link

The spell check may not be checking hidden files and directories #2

Closed brobeson closed 1 month ago

brobeson commented 1 month ago

Version

1.0.0

What happened?

In my CppStarter project, I found that I need to run cspell --dot **/* and add .git/* to the CSpell configuration file:

{
  "ignorePaths": [".git/*"]
}

This suggests the workflow may not have the correct command.

What should happen?

brobeson commented 1 month ago

I was wrong; this step works correctly. See this screenshot from my CppStarter repo. The workflow correctly found spelling mistakes in files in .vscode/.

image