-
Notifications
You must be signed in to change notification settings - Fork 23
/
gearlock.code-workspace
55 lines (55 loc) · 1.06 KB
/
gearlock.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"shellcheck.enable": true,
"shellcheck.enableQuickFix": true,
"shellcheck.executablePath": "", // Priority: user defined > bundled shellcheck binary > "shellcheck"
"shellcheck.exclude": [
"2154",
"1090",
"1091",
"2086"
],
"shellcheck.customArgs": [
"-s",
"bash"
],
"shellcheck.ignorePatterns": {
"**/*.zsh": true,
"**/*.zshrc": true,
"**/zshrc": true,
"**/*.zprofile": true,
"**/zprofile": true,
"**/*.zlogin": true,
"**/zlogin": true,
"**/*.zlogout": true,
"**/zlogout": true,
"**/*.zshenv": true,
"**/zshenv": true,
"/etc": true,
"/code-workspace*": true,
"**/.vscode/**": true,
"**/*.zsh-theme": true
},
"shellcheck.ignoreFileSchemes": [
"git",
"gitfs"
],
"shellcheck.useWSL": false,
"files.autoGuessEncoding": true,
"files.associations": {
"**/core/**": "shellscript"
},
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"conventionalCommits.scopes": [
"build-system",
"gxpm",
"gdk"
]
}
}