-
Notifications
You must be signed in to change notification settings - Fork 1
/
coffee-rates.code-workspace
59 lines (59 loc) · 2.17 KB
/
coffee-rates.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
56
57
58
59
{
"folders": [{
"path": "."
}],
"settings": {
"docthis.includeDescriptionTag": true,
"docthis.includeTypes": false,
"typescriptHero.imports.removeTrailingIndex": true,
"typescriptHero.imports.organizeOnSave": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescriptHero.imports.disableImportRemovalOnOrganize": false,
"typescriptHero.imports.insertSemicolons": true,
"jshint.enable": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js.map": true,
"**/*.js": {
"when": "$(basename).ts"
},
},
"workbench.colorCustomizations": {
"activityBar.background": "#ab307e",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#25320e",
"activityBarBadge.foreground": "#e7e7e7",
"titleBar.activeBackground": "#832561",
"titleBar.inactiveBackground": "#83256199",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveForeground": "#e7e7e799",
"statusBar.background": "#832561",
"statusBarItem.hoverBackground": "#ab307e",
"statusBar.foreground": "#e7e7e7"
},
"typescriptHero.imports.multiLineWrapThreshold": 100,
"typescriptHero.imports.organizeSortsByFirstSpecifier": true,
"typescript.tsdk": "node_modules\\typescript\\lib"
},
"extensions": {
"recommendations": [
"aaron-bond.better-comments",
"christian-kohler.npm-intellisense",
"dbaeumer.vscode-eslint",
"eg2.tslint",
"esbenp.prettier-vscode",
"hookyqr.beautify",
"joelday.docthis",
"jpoissonnier.vscode-styled-components",
"rbbit.typescript-hero",
"visualstudioexptteam.vscodeintellicode",
]
}
}