1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/.vscode/settings.json
2018-05-31 11:55:11 +02:00

22 lines
462 B
JSON

// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 2,
"go.lintTool": "gometalinter",
"go.lintFlags": [
"--enable-gc",
"--no-config",
"--exclude=.*\\.pb\\.go",
"--disable=gas",
"--disable=gocyclo"
],
"go.formatTool": "goimports",
"protoc": {
"options": [
"--proto_path=${env.GOPATH}/src/",
"--proto_path=${env.GOPATH}/src/github.com/google/protobuf/src"
]
}
}