1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-09 13:34:34 -04:00
v2fly/.vscode/settings.json

25 lines
534 B
JSON
Raw Normal View History

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",
2018-10-14 02:14:33 -04:00
"--disable=gocyclo",
"--disable=gosec",
2018-11-13 17:19:58 -05:00
"--disable=interfacer",
"--deadline=5m"
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
}