Skip to content

Commit e6fccd2

Browse files
committed
misc
1 parent c1c30b4 commit e6fccd2

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ indent_size = 4
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

10-
[*.js,json,yml,yaml]
10+
[*.{json,yml,yaml}]
1111
indent_size = 2
1212

1313
[{Makefile,go.mod,go.sum,*.go}]

.vscode/settings.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,35 @@
22
"[go]": {
33
"editor.defaultFormatter": "golang.go",
44
"editor.insertSpaces": false,
5-
"editor.tabSize": 4,
5+
"editor.tabSize": 4
66
},
77
"[json][jsonc][yaml]": {
88
"editor.insertSpaces": true,
9-
"editor.tabSize": 2,
9+
"editor.tabSize": 2
1010
},
1111
"[shellscript]": {
1212
"editor.insertSpaces": false,
13-
"editor.tabSize": 4,
13+
"editor.tabSize": 4
1414
},
15+
"files.encoding": "utf8",
1516
"files.eol": "\n",
1617
"files.insertFinalNewline": true,
1718
"files.trimFinalNewlines": true,
1819
"files.trimTrailingWhitespace": true,
1920
"go.formatTool": "gofumpt",
21+
"go.formatFlags": [
22+
"-extra"
23+
],
2024
"go.lintTool": "golangci-lint",
2125
"go.useLanguageServer": true,
2226
"gopls": {
2327
"analyses": {
2428
"composites": false,
25-
"deepequalerrors": false
29+
"fieldalignment": false
2630
},
2731
"formatting.gofumpt": true,
28-
"formatting.local": "github.com/percona"
32+
"formatting.local": "github.com/percona",
33+
"ui.semanticTokens": true
2934
},
30-
"groupImports.onSave": true,
3135
"shellformat.flag": "-bn -ci -s"
3236
}

0 commit comments

Comments
 (0)