1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/.vscode/settings.json

22 lines
462 B
JSON
Raw Normal View History

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