Last active
February 24, 2026 23:43
-
-
Save mahmud2011/34fc610cb243e2df8a267b6055e80038 to your computer and use it in GitHub Desktop.
Visual Studio Code user settings (Version: 1.102.1) [⌘ + ⇧ + P => Preferences: Open User Settings (JSON)]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "telemetry.telemetryLevel": "off", | |
| "git.blame.editorDecoration.enabled": true, | |
| "go.buildTags": "unit,integration,performance", | |
| "go.testFlags": [ | |
| "-cover", | |
| "-race", | |
| "-tags=unit,integration,performance" | |
| ], | |
| "go.lintTool": "golangci-lint-v2", | |
| "go.toolsManagement.autoUpdate": true, | |
| "gopls": { | |
| "ui.semanticTokens": true | |
| }, | |
| "editor.fontSize": 13, | |
| "editor.fontFamily": "'JetBrains Mono', monospace" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment