-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsettings.json
More file actions
39 lines (39 loc) · 1.12 KB
/
settings.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"[cucumber]": {
"editor.defaultFormatter": "CucumberOpen.cucumber-official"
},
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"[templ]": {
"editor.defaultFormatter": "a-h.templ"
},
"cSpell.language": "en,lorem",
"cucumber.features": ["**/internal/app/**/*.feature"],
"cucumber.glue": ["**/internal/app/**/*_test.go"],
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.maxComputationTime": 0,
"docker.extension.enableComposeLanguageServer": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"emmet.includeLanguages": {
"templ": "html"
},
"go.alternateTools": {
"customFormatter": "golangci-lint"
},
"go.formatFlags": ["fmt", "--stdin"],
"go.formatTool": "custom",
"go.lintTool": "golangci-lint",
"go.toolsManagement.autoUpdate": true,
"gopls": {
"ui.semanticTokens": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"yaml.schemas": {
".vscode/empty.json": ["compose*y*ml", "docker-compose*y*ml"]
}
}