Last active
March 25, 2017 11:31
-
-
Save HideoKun/5a336978f3ef5eec4730037a516cef3b to your computer and use it in GitHub Desktop.
exclude node_modules from sublime text project - good example; https://medium.com/@wo.contact/asdf-fd4f781f19c2#.s27lqq574
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"folders": | |
[ | |
//exclude all dirs | |
{ | |
"path": "/Users/wo/Documents/blog/sublimeProject", | |
"folder_exclude_patterns": ["*"], | |
}, | |
//import required dirs | |
{ "path": "/Users/wo/Documents/blog/sublimeProject/app" }, | |
{ "path": "/Users/wo/Documents/blog/sublimeProject/logs" }, | |
{ "path": "/Users/wo/Documents/blog/sublimeProject/public" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment