-
Notifications
You must be signed in to change notification settings - Fork 25
/
workspace.code-workspace
46 lines (46 loc) · 1.01 KB
/
workspace.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
{
"folders": [
{ "name": "all", "path": "." },
{ "name": "front", "path": "./front" }
],
"extensions": {
"recommendations": [
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"dbaeumer.vscode-eslint",
"jpoissonnier.vscode-styled-components"
]
},
"settings": {
"typescript.tsdk": "front/node_modules/typescript/lib",
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"files.exclude": {
"build": true,
"**/*.css": {
"when": "$(basename).scss"
},
"**/*.js": {
"when": "$(basename).ts"
},
"**/*?.js": {
"when": "$(basename).tsx"
},
"**/*.lock.json": true,
"**/*.map": {
"when": "$(basename)"
},
"**/.DS_Store": true,
"**/.git": true,
"**/.svn": true,
"**/.tmp": true,
"**/bin/**": true,
"**/obj/**": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
}