-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNote-Taking-App.code-workspace
More file actions
43 lines (43 loc) · 975 Bytes
/
Note-Taking-App.code-workspace
File metadata and controls
43 lines (43 loc) · 975 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
43
{
"folders": [
{
"path": ".",
},
],
"settings": {
"eslint.workingDirectories": [
{
"mode": "auto",
},
],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"files.exclude": {
"**/.github": true,
"**/.vs": true,
"**/Backend": true,
"**/Note-Taking-App.sln": true,
"**/frontend/.vite": true,
"**/node_modules": true,
},
"editor.formatOnSave": true,
"editor.detectIndentation": false,
"prettier.singleAttributePerLine": true,
"prettier.bracketSameLine": true,
"prettier.tabWidth": 4,
"prettier.proseWrap": "preserve",
"prettier.useTabs": true,
"prettier.printWidth": 150,
},
}