settings.json 337 B

123456789101112131415
  1. // Place your settings in this file to overwrite default and user settings.
  2. {
  3. "editor.tabSize": 2,
  4. "go.buildTags": "json",
  5. "go.lintTool": "gometalinter",
  6. "go.formatTool": "goimports",
  7. "protoc": {
  8. "options": [
  9. "--proto_path=$GOPATH/src/",
  10. "--proto_path=$GOPATH/src/github.com/google/protobuf/src"
  11. ]
  12. }
  13. }