-
Notifications
You must be signed in to change notification settings - Fork 2
/
Timber.code-workspace
54 lines (54 loc) · 1.2 KB
/
Timber.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
{
"folders": [
{
"name": "ui",
"path": "./ui",
"expanded": true
},
{
"name": "api",
"path": "./api"
},
{
"name": "docs",
"path": "./design_doc"
}
// {
// "name": "Timber",
// "path": ".",
// "ignore": [
// "**/*.code-workspace"
// ]
// }
],
"settings": {
"files.exclude": {
"*.code-workspace": true
},
"tsimporter.preferRelative": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.formatOnPaste": true,
"tsimporter.doubleQuotes": false,
// "eslint.autoFixOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[javascriptreact]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
}