sinpro.dev
Docs
GitHub
GitHub Issues
  • Company Information
    • Portfolio
    • About
    • Services
    • Events
  • Dev Environment
    • macOS Settings
    • Chrome Extensions
    • VSCode Workspace Settings
    • VSCode Workspace Extensions
    • Global NPM Packages
    • npm-check-updates
    • SvelteKit
    • Customize Zsh
    • ChatGPT Prompts
    • Tailwind CSS
    • Warp
    • Keyboard Shortcuts
  • Assets
    • Assets
    • JPG/PNG to AVIF
    • TTF to WOFF2
  • Clean Code
    • Clean Code
    • Format
    • Quality
    • Variables
    • Functions
    • Objects and Data Structures
    • Classes
    • Concurrency
    • Error handling
    • Comments
  • Code Style
    • TypeScript Config
    • Prettier
    • ESLint
    • Stylelint
  • Testing
    • Vitest
    • Playwright
  • Git
    • Git Branches and Commits
    • Git Hooks
    • Git User Profiles
    • Git for Windows
  • GitHub
    • GitHub Issues
    • GitHub Pull Requests
    • GitHub Repository Settings
    • GitHub Branch Protection
    • GitHub Actions
  • Code Quality
    • SonarCloud Coverage
  • Server
    • SSH
    • PM2
    • Caddy
    • Updating the server
    • ngrok
  • Team sinProject
    • Our Team Policy
    • Equipment and Supplies
    • Books
    • Slack
    • Locales
    • Funny Apps
    • Docs History
  • Talk
    • Talk
    • Creating a Project
    • App Structure

Dev Environment

VSCode Workspace Settings

Edit this page

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

Tab Size

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

Bracket Pairs

Show lines connecting pairs of brackets

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

Minimap

Hide Minimap

.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).

.vscode/settings.json
{
	"files.eol": "\n"
}
Chrome Extensions VSCode Workspace Extensions
© sinProject. v0.73.0
On this page
  • VSCode Workspace Settings
  • Tab Size
  • Bracket Pairs
  • Minimap
  • The default end of line character