VSCode Workspace Settings
Here are the VSCode workspace settings that we commonly use at sinProject.
Tab Size
{
"editor.tabSize": 2
}
Bracket Pairs
Show lines connecting pairs of brackets
{
"editor.guides.bracketPairs": true
}
Minimap
Hide Minimap
{
"editor.minimap.enabled": false
}
The default end of line character
When creating a new file on Windows, you can specify the line break code as LF (Line Feed).
{
"files.eol": "\n"
}