github.com/hedzr/evendeep@v0.4.8/.vscode/settings.json (about) 1 { 2 "go.buildTags": "-tags='hzstudio'", 3 // "go.buildFlags": ["-tags=hzstudio"], 4 "go.testTags": "hzstudio,unit,integration,verbose", 5 6 "go.coverOnSave": true, 7 "go.coverageDecorator": { 8 "type": "gutter", // highlight or gutter 9 10 // "coveredHighlightColor": "rgba(0,0,0,0.0)", 11 // "uncoveredHighlightColor": "rgba(32,96,96,0.5)", 12 // "coveredBorderColor": "rgba(64,128,128,0.0)", 13 // "uncoveredBorderColor": "rgba(128,64,64,0.0)", 14 15 // "coveredGutterStyle": "blockblue", 16 // "uncoveredGutterStyle": "slashyellow", 17 18 "uncoveredGutterStyle": "slashred" 19 }, 20 // "go.coverOnSingleTest": true, 21 "go.coverageOptions": "showUncoveredCodeOnly", 22 23 "go.diagnostic.vulncheck": "Imports", 24 "go.formatTool": "gofumpt", // 25 26 // first item for Windows, next item for macOS 27 // because I use sync settings for multiple OS 28 "editor.fontFamily": "'Cascadia Code PL', 'CascadiaCodePL', Consolas", 29 // setting font ligatures as https://github.com/microsoft/cascadia-code#font-features 30 "editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'", 31 // this is optional, it makes the weight of default font become lighter. 32 // Otherwise if we set font to 'Cascadia Code PL SemiLight' as it would be the same but it could'nt work with font ligatures. 33 "editor.fontWeight": "350" 34 }