util-go/.vscode/settings.json

13 lines
271 B
JSON
Raw Permalink Normal View History

2018-04-03 17:37:26 +09:00
// Place your settings in this file to overwrite default and user settings.
{
// Specifies Lint tool name.
2019-11-05 23:47:44 +09:00
"go.lintTool": "golint",
2018-04-03 17:37:26 +09:00
// Flags to pass to Lint tool (e.g. ["-min_confidence=.8"])
"go.lintFlags": [
"--config=${workspaceRoot}/golint.json"
]
2019-11-05 23:47:44 +09:00
}