File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ indent_size = 4
7
7
trim_trailing_whitespace = true
8
8
insert_final_newline = true
9
9
10
- [* .js, json,yml,yaml ]
10
+ [* .{ json,yml,yaml} ]
11
11
indent_size = 2
12
12
13
13
[{Makefile,go.mod,go.sum,* .go} ]
Original file line number Diff line number Diff line change 2
2
"[go]" : {
3
3
"editor.defaultFormatter" : " golang.go" ,
4
4
"editor.insertSpaces" : false ,
5
- "editor.tabSize" : 4 ,
5
+ "editor.tabSize" : 4
6
6
},
7
7
"[json][jsonc][yaml]" : {
8
8
"editor.insertSpaces" : true ,
9
- "editor.tabSize" : 2 ,
9
+ "editor.tabSize" : 2
10
10
},
11
11
"[shellscript]" : {
12
12
"editor.insertSpaces" : false ,
13
- "editor.tabSize" : 4 ,
13
+ "editor.tabSize" : 4
14
14
},
15
+ "files.encoding" : " utf8" ,
15
16
"files.eol" : " \n " ,
16
17
"files.insertFinalNewline" : true ,
17
18
"files.trimFinalNewlines" : true ,
18
19
"files.trimTrailingWhitespace" : true ,
19
20
"go.formatTool" : " gofumpt" ,
21
+ "go.formatFlags" : [
22
+ " -extra"
23
+ ],
20
24
"go.lintTool" : " golangci-lint" ,
21
25
"go.useLanguageServer" : true ,
22
26
"gopls" : {
23
27
"analyses" : {
24
28
"composites" : false ,
25
- "deepequalerrors " : false
29
+ "fieldalignment " : false
26
30
},
27
31
"formatting.gofumpt" : true ,
28
- "formatting.local" : " github.com/percona"
32
+ "formatting.local" : " github.com/percona" ,
33
+ "ui.semanticTokens" : true
29
34
},
30
- "groupImports.onSave" : true ,
31
35
"shellformat.flag" : " -bn -ci -s"
32
36
}
You can’t perform that action at this time.
0 commit comments