-
Hi I've been using the vs-code extension for some time now and have today been looking at integrating the cspell-cli into our pre-commit hooks in replacement of codespell. One thing I've noticed is that with a clean install of both there are differences in the bundled dicts. E.g. when scanning the - id: trailing-whitespace
stages:
- pre-commit
args:
- --markdown-linebreak-ext=md Running Looking at the vscode
pre-commit
Is there any way to ensure these are updated / aligned? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Please try out v4. (There is a workaround in v3) With v4, the extension will try to load all dictionaries from In v3 you have to tell it to load the dictionaries:
See: #2864 (comment) |
Beta Was this translation helpful? Give feedback.
@adam-moss,
Please try out v4. (There is a workaround in v3)
With v4, the extension will try to load all dictionaries from
node_modules
before falling back to the bundled dictionaries.In v3 you have to tell it to load the dictionaries:
cspell.config.yaml
See: #2864 (comment)