forked from hashicorp/copywrite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
44 lines (44 loc) · 945 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
// Editor settings
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
// json auto-formatting can get weird
"[json]": {
"editor.formatOnSave": false
},
// Go settings
"go.buildOnSave": "off",
"go.lintOnSave": "workspace",
"go.vetOnSave": "workspace",
"go.buildTags": "",
"go.buildFlags": [],
"go.lintTool": "golint",
"go.lintFlags": [],
"go.vetFlags": [],
"go.testOnSave": false,
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.formatTool": "gofmt",
"go.formatFlags": [],
"go.inferGopath": false,
"go.gocodeAutoBuild": false,
"go.testFlags": [
"-v"
],
"cSpell.words": [
"addlicense",
"busa",
"checkonly",
"haya",
"headerignore",
"licensef",
"SPDXID"
],
"markdownlint.ignore": [
".github/pull_request_template.md"
],
"markdownlint.config": {
"line-length": false
}
}