-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsettings.json
More file actions
69 lines (69 loc) · 1.36 KB
/
Copy pathsettings.json
File metadata and controls
69 lines (69 loc) · 1.36 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"[go]": {
"editor.defaultFormatter": "golang.go",
"editor.insertSpaces": false,
"editor.tabSize": 4
},
"[javascript][typescript][json][jsonc][yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[shellscript]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
},
"black-formatter.args": [
"-l 100"
],
"files.encoding": "utf8",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"go.formatFlags": [
"-extra"
],
"go.lintTool": "golangci-lint-v2",
"go.useLanguageServer": true,
"gopls": {
"analyses": {
"composites": false,
"ST1000": false,
"wsl_v5": false
},
"formatting.gofumpt": true,
"formatting.local": "github.com/percona",
"ui.semanticTokens": true
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"cSpell.words": [
"bson",
"clustersync",
"cmdutil",
"codegen",
"colls",
"connstring",
"contextcheck",
"Debugf",
"errgroup",
"errorlint",
"Infof",
"keygen",
"mapstructure",
"nolint",
"opencode",
"pcsm",
"pipefail",
"readconcern",
"readpref",
"Warnf",
"wrapcheck",
"Wrapf",
"writeconcern",
"zerolog"
]
}