-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspectre-shell.code-workspace
More file actions
113 lines (113 loc) · 2.97 KB
/
spectre-shell.code-workspace
File metadata and controls
113 lines (113 loc) · 2.97 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
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorTheme": "Solarized Dark",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"breadcrumbs.enabled": true,
"editor.fontFamily": "'Fira Code', 'Cascadia Code', 'JetBrains Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 1.6,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "boundary",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.inlineSuggest.enabled": true,
"editor.linkedEditing": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/dist": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/dist/**": true,
"**/node_modules/**": true
},
"search.smartCase": true,
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "node_modules/typescript/lib",
"npm.packageManager": "npm",
"terminal.integrated.defaultProfile.linux": "bash",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"scm.defaultViewMode": "tree",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.wordWrap": "off"
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Build Shell",
"type": "node-terminal",
"request": "launch",
"command": "npm run build"
}
]
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"ms-vscode-remote.remote-wsl",
"pkief.material-icon-theme",
"yzhang.markdown-all-in-one"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "npm run build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "test",
"command": "npm test",
"type": "shell"
},
{
"label": "check",
"command": "npm run check",
"type": "shell"
}
]
}
}