-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
77 lines (77 loc) · 2.25 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
// Place your settings in this file to overwrite the default settings
{
"[javascript]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.formatOnSave": true,
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"workbench.settings.useSplitJSON": true,
"workbench.settings.editor": "json",
"files.exclude": {
"**/.git": true,
"**/.idea": true,
"**/.svn": true,
"**/.DS_Store": true,
"public/build": true,
"public/vendor": true,
"tmp": true
},
"search.useIgnoreFiles": false,
"search.exclude": {
"**/data/plugins": true,
"**/node_modules": true,
"**/vendor": true
},
"go.lintOnSave": "file",
"go.lintTool": "golint",
"go.formatTool": "goimports",
"editor.renderWhitespace": "boundary",
"cSpell.ignoreWords": [
"grafana"
],
"editor.minimap.enabled": false,
"explorer.openEditors.visible": 0,
"workbench.editor.enablePreview": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": true
},
"gitlens.keymap": "chorded",
"explorer.confirmDelete": false,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": false,
"go.useLanguageServer": true,
"go.languageServerExperimentalFeatures": {
"diagnostics": true // for diagnostics as you type
},
"[go]": {
"editor.snippetSuggestions": "none",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"gopls": {
"usePlaceholders": true // add parameter placeholders when completing a function
},
"go.buildOnSave": "off",
"go.vetOnSave": "off",
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"go.toolsManagement.autoUpdate": true,
"security.workspace.trust.untrustedFiles": "open",
"window.zoomLevel": 1
}