settings.json 462 B

123456789101112131415161718192021
  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. "--disable=gocyclo"
  11. ],
  12. "go.formatTool": "goimports",
  13. "protoc": {
  14. "options": [
  15. "--proto_path=${env.GOPATH}/src/",
  16. "--proto_path=${env.GOPATH}/src/github.com/google/protobuf/src"
  17. ]
  18. }
  19. }