settings.json 367 B

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