settings.json 513 B

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