2016-01-21 18:53:58 -05:00
|
|
|
// Place your settings in this file to overwrite default and user settings.
|
|
|
|
{
|
2016-05-28 07:44:11 -04:00
|
|
|
"editor.tabSize": 2,
|
|
|
|
|
2016-12-21 09:37:16 -05:00
|
|
|
"go.lintTool": "gometalinter",
|
2016-12-21 10:38:48 -05:00
|
|
|
"go.lintFlags": [
|
2018-05-25 18:47:51 -04:00
|
|
|
"--enable-gc",
|
|
|
|
"--no-config",
|
|
|
|
"--exclude=.*\\.pb\\.go",
|
2018-05-31 05:55:11 -04:00
|
|
|
"--disable=gas",
|
|
|
|
"--disable=gocyclo"
|
2016-12-21 10:38:48 -05:00
|
|
|
],
|
2016-12-21 10:00:02 -05:00
|
|
|
"go.formatTool": "goimports",
|
2016-09-17 18:41:21 -04:00
|
|
|
|
|
|
|
"protoc": {
|
|
|
|
"options": [
|
2017-04-12 04:40:21 -04:00
|
|
|
"--proto_path=${env.GOPATH}/src/",
|
|
|
|
"--proto_path=${env.GOPATH}/src/github.com/google/protobuf/src"
|
2016-09-17 18:41:21 -04:00
|
|
|
]
|
|
|
|
}
|
2017-04-12 04:40:21 -04:00
|
|
|
}
|