-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cSpell.ignorePaths default paths can not be overwritten #55
Comments
Thank you. I'll check it out. |
cSpell also excludes the search exclude list. // Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
}, Add this to your workspace settings: // Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"**/bower_components": true
}, |
I'll take another look. |
This seems to be an issue with VS Code. It is not honoring the workspace settings. There is a minor bug in how we check the glob, that might fix this issue for you. In the mean time, there is a work around by using |
Thanks for the information, should this bug be reported to the VSCode repo? |
I think I have fixed the spell checker so it will work in your case. Please let me know. |
The fix should be in 0.14.6 |
Works fine with 0.14.6, thank you very much |
0.14.6 & VS Code: 1.31.1, I can't get files with a |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I am developing my node modules inside a
node_modules
directory and wanted to be able to spellcheck the code. I removed the**/node_modules/**
option from thecSpell.ignorePaths
array, but the files from the this directory are still not spellchecked. Even if I modify the user or the workspace settings it does not help.Tested environment:
OS: Ubuntu 16.04
VSCode: 1.8.1
Spell-checker: 0.14.3
The text was updated successfully, but these errors were encountered: