You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.1 KiB
87 lines
3.1 KiB
{
|
|
"name": "stackedit-dev",
|
|
"dockerComposeFile": [
|
|
"docker-compose.yml"
|
|
],
|
|
"service": "vscode",
|
|
"runServices": [
|
|
"vscode"
|
|
],
|
|
"shutdownAction": "stopCompose",
|
|
"postCreateCommand": "source ~/.windows.sh && go mod download && go mod tidy",
|
|
"workspaceFolder": "/workspace",
|
|
// "overrideCommand": "",
|
|
"extensions": [
|
|
"golang.go",
|
|
"eamodio.gitlens", // IDE Git information
|
|
"davidanson.vscode-markdownlint",
|
|
"ms-azuretools.vscode-docker", // Docker integration and linting
|
|
"shardulm94.trailing-spaces", // Show trailing spaces
|
|
"Gruntfuggly.todo-tree", // Highlights TODO comments
|
|
"bierner.emojisense", // Emoji sense for markdown
|
|
"stkb.rewrap", // rewrap comments after n characters on one line
|
|
"vscode-icons-team.vscode-icons", // Better file extension icons
|
|
"github.vscode-pull-request-github", // Github interaction
|
|
"redhat.vscode-yaml", // Kubernetes, Drone syntax highlighting
|
|
"bajdzis.vscode-database", // Supports connections to mysql or postgres, over SSL, socked
|
|
"IBM.output-colorizer", // Colorize your output/test logs
|
|
// "mohsen1.prettify-json", // Prettify JSON data
|
|
// "zxh404.vscode-proto3", // Supports Proto syntax
|
|
// "jrebocho.vscode-random", // Generates random values
|
|
// "alefragnani.Bookmarks", // Manage bookmarks
|
|
// "quicktype.quicktype", // Paste JSON as code
|
|
// "spikespaz.vscode-smoothtype", // smooth cursor animation
|
|
],
|
|
"settings": {
|
|
"files.eol": "\n",
|
|
"remote.extensionKind": {
|
|
"ms-azuretools.vscode-docker": "workspace"
|
|
},
|
|
"editor.codeActionsOnSaveTimeout": 3000,
|
|
"go.useLanguageServer": true,
|
|
"[go]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
// Optional: Disable snippets, as they conflict with completion ranking.
|
|
"editor.snippetSuggestions": "none"
|
|
},
|
|
"[go.mod]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
},
|
|
"gopls": {
|
|
"usePlaceholders": false,
|
|
"staticcheck": true
|
|
},
|
|
"go.autocompleteUnimportedPackages": true,
|
|
"go.gotoSymbol.includeImports": true,
|
|
"go.gotoSymbol.includeGoroot": true,
|
|
"go.lintTool": "golangci-lint",
|
|
"go.buildOnSave": "workspace",
|
|
"go.lintOnSave": "workspace",
|
|
"go.vetOnSave": "workspace",
|
|
"editor.formatOnSave": true,
|
|
"go.toolsEnvVars": {
|
|
"GOFLAGS": "-tags=",
|
|
"CGO_ENABLED": 1 // for the race detector
|
|
},
|
|
"gopls.env": {
|
|
"GOFLAGS": "-tags="
|
|
},
|
|
"go.testEnvVars": {
|
|
"": "",
|
|
},
|
|
"go.testFlags": [
|
|
"-v",
|
|
"-race"
|
|
],
|
|
"go.testTimeout": "10s",
|
|
"go.coverOnSingleTest": true,
|
|
"go.coverOnSingleTestFile": true,
|
|
"go.coverOnTestPackage": true
|
|
}
|
|
} |