See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| { | |
| "go.autocompleteUnimportedPackages": true, | |
| "go.coverageDecorator": { | |
| "type": "gutter", | |
| "coveredHighlightColor": "rgba(64,128,128,0.5)", | |
| "uncoveredHighlightColor": "rgba(128,64,64,0.25)", | |
| "coveredGutterStyle": "blockgreen", | |
| "uncoveredGutterStyle": "blockred" | |
| }, | |
| // "go.coverOnSave": false, |
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "github.com/gin-gonic/gin" |