-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathogle.code-workspace
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathogle.code-workspace
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"golang.go",
"redhat.vscode-yaml",
"github.vscode-github-actions",
"davidanson.vscode-markdownlint",
"timonwong.shellcheck",
"foxundermoon.shell-format",
]
},
"settings": {
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"text": "Conventional commits: <type>(<scope>): <description>. Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert. Header <=72 chars. Description lower-case. Body lines <=100 chars."
}
],
"git.inputValidationSubjectLength": 72,
"git.inputValidationLength": 100,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
"[yaml]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "redhat.vscode-yaml",
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"[json]": {
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": true
}
},
"[jsonc]": {
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": true
}
},
"[shellscript]": {
"editor.formatOnSave": true
},
"[makefile]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
},
}
}