Add .vscode/ VSCode cache folder #3528
Conversation
|
Agreed |
But the whole directory shouldn't be added to .gitignore I think, as it also stores configurations, so if another user clones the repo, vs code will set it up from the configs. For example, i can have intellisense settings in my
many repos say to trim whitespaces, and using the original "editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"explorer.sortOrder": "type",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.acceptSuggestionOnEnter": "off",
"deepcode.uploadApproved": true, //accepting suggestions using enter turned off
"workbench.colorCustomizations": {
"activityBar.background": "#2B3105",
"titleBar.activeBackground": "#3C4407",
"titleBar.activeForeground": "#F8FCE1"
}Also
|
|
Well then like this, even the .vs directory is needed when talking that way |
|
It's not needed, as those are developer settings. A developer's personal settings shouldn't be in the version control!!! So, the .vs directory is not needed at all. |
Reasons for making this change:
Many Unity developers use Visual Studio Code as their primary code editor for their scripts (C#)
and using Code with projects creates a cache directory called .vscode/ which is not needed like the .vs/ directory.