settings.json 437 B

1234567891011121314151617181920
  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. "--no-config",
  8. "--exclude=.*\\.pb\\.go",
  9. "--disable=gas"
  10. ],
  11. "go.formatTool": "goimports",
  12. "protoc": {
  13. "options": [
  14. "--proto_path=${env.GOPATH}/src/",
  15. "--proto_path=${env.GOPATH}/src/github.com/google/protobuf/src"
  16. ]
  17. }
  18. }