sinProject-Inc/sinpro-dev

View on GitHub
docs/20-dev-environment/20-vscode-workspace-settings.md

Summary

Maintainability
Test Coverage
---
title: VSCode Workspace Settings
description: Here are the VSCode workspace settings that we commonly use at sinProject.
---

Here are the VSCode workspace settings that we commonly use at sinProject.

## Tab Size

```json:.vscode/settings.json
{
    "editor.tabSize": 2
}
```

## Bracket Pairs

Show lines connecting pairs of brackets

```json:.vscode/settings.json
{
    "editor.guides.bracketPairs": true
}
```

## Minimap

Hide Minimap

```json:.vscode/settings.json
{
    "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).

```json:.vscode/settings.json
{
    "files.eol": "\n"
}
```