forked from digimezzo/dopamine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecommended_vscode_settings.json
More file actions
41 lines (41 loc) · 1.18 KB
/
recommended_vscode_settings.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"git.enableSmartCommit": true,
"git.autofetch": true,
"mochaExplorer.files": "src/spec/**/*.spec.ts",
"mochaExplorer.require": "ts-node/register",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true,
"source.organizeImports": true
},
"editor.fontFamily": "'Droid Sans Mono',Consolas, 'Courier New', monospace",
"workbench.iconTheme": "vscode-icon-theme",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js.map": true,
"**/*.js": {
"when": "$(basename).ts"
}
},
"launch": {
"configurations": [],
"compounds": []
},
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"editor.fontSize": 13,
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
}