mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
25 lines
534 B
JSON
25 lines
534 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",
|
|
"--disable=gosec",
|
|
"--disable=interfacer",
|
|
"--deadline=5m"
|
|
],
|
|
"go.formatTool": "goimports",
|
|
|
|
"protoc": {
|
|
"options": [
|
|
"--proto_path=${env.GOPATH}/src/",
|
|
"--proto_path=${env.GOPATH}/src/github.com/google/protobuf/src"
|
|
]
|
|
}
|
|
}
|