-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmonorepo.code-workspace
49 lines (49 loc) · 1.13 KB
/
monorepo.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
{
"folders": [
{
"name": "atlas",
"path": "apps/atlas"
},
{
"name": "core-lib",
"path": "packages/core-lib"
},
{
"name": "eslint-config-bases",
"path": "packages/eslint-config-bases"
},
{
"name": "ui-lib",
"path": "packages/ui-lib"
},
{
"name": "root",
"path": "."
}
],
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
},
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// Disable vscode formatting for js,jsx,ts,tsx files
// to allow dbaeumer.vscode-eslint to format them
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.alwaysShowStatus": true,
// https://github.com/Microsoft/vscode-eslint#mono-repository-setup
"eslint.workingDirectories": [
"./apps/atlas",
"./apps/briq-app",
"./apps/treasury_page",
"./packages/core-lib",
"./packages/eslint-config-bases",
"./packages/ui-lib"
]
}
}