cspell
cspell copied to clipboard
💡: Consider moving .cspellcache to node_modules/.cache
Problem
Now, I should add .cspellcache to .gitignore manually. Also, this file should not be in the project root dir.
Solution
Like Prettier, Store in node_modules/.cache seems a great solution.
Alternatives
No response
Additional Context
No response
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
@recallwei,
Thank you for the suggestion.
It is already possible to configure the cache location.
- cli:
--cache-location - config:
"cache": { "cacheLocation": "./node_modules/.cache/cspell" },
@recallwei,
Thank you for the suggestion.
It is already possible to configure the cache location.
- cli:
--cache-location- config:
"cache": { "cacheLocation": "./node_modules/.cache/cspell" },
This is useful for me.