My VSCode settings
Every developer has own settings for each IDE. Because everybody have different habits and experiences. Now let me share my own settings for vscode. The config file path: .vscode/settings.json
{
"editor.tabSize": 4,
"search.exclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist/*/**": true,
"public": true
}
}
I will update this constantly over time.
0 yorum