-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvs.code-workspace
More file actions
42 lines (42 loc) · 859 Bytes
/
vs.code-workspace
File metadata and controls
42 lines (42 loc) · 859 Bytes
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
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "commitlint-config",
"path": "packages/commitlint-config"
},
{
"name": "eslint-config",
"path": "packages/eslint-config"
},
{
"name": "jest-config",
"path": "packages/jest-config"
},
{
"name": "lerna-config",
"path": "packages/lerna-config"
},
{
"name": "typescript-config",
"path": "packages/typescript-config"
}
],
"settings": {
"eslint.format.enable": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"typescript.preferences.importModuleSpecifier": "relative",
"files.eol": "\n"
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
}