util-go/.vscode/settings.json

13 lines
271 B
JSON
Raw Permalink Normal View History

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