-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
117 lines (117 loc) · 3.23 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"editor.fontSize": 18,
"editor.fontFamily": "Cica",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.renderLineHighlight": "all",
"editor.bracketPairColorization.enabled": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/__pycache__": true
},
"workbench.colorTheme": "Monokai",
"explorer.confirmDelete": false,
"go.useLanguageServer": true,
"go.alternateTools": {
"go-langserver": "gopls"
},
"[go]": {
"editor.snippetSuggestions": "none",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"go.delveConfig": {
"debugAdapter": "legacy",
},
"[terraform]": {
"editor.formatOnSave": true
},
"[shell]": {
"editor.formatOnSave": true
},
"gopls": {
"usePlaceholders": true,
"completeUnimported": true,
"hoverKind": "SynopsisDocumentation",
"linkTarget": "pkg.go.dev",
"staticcheck": false,
"completionDocumentation": true,
"deepCompletion": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDragAndDrop": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"go.lintTool": "golangci-lint",
"go.testFlags": ["-v"],
"go.testTimeout": "120s",
"editor.largeFileOptimizations": false,
"go.toolsManagement.autoUpdate": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"redhat.telemetry.enabled": true,
"editor.suggestSelection": "first",
"shellformat.useEditorConfig": true,
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"yaml.format.enable": true,
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"protoc": {
"editor.formatOnSave": true
},
"[proto3]": {
"editor.defaultFormatter": "zxh404.vscode-proto3"
},
"[cue]": {
"editor.defaultFormatter": "brody715.vscode-cuelang"
},
"workbench.iconTheme": "material-icon-theme",
"git.openRepositoryInParentFolders": "always",
"[python]": {
"editor.formatOnType": true
},
"githubPullRequests.pullBranch": "never",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true
},
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[rust]": {
"editor.formatOnSave": false
},
"rust-analyzer.checkOnSave": true,
"rust-analyzer.check.command": "clippy",
"rust-analyzer.check.extraArgs": ["--", "-A", "clippy::needless_return"],
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.diagnostics.disabled": [
"unresolved-proc-macro"
]
}