-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.code-workspace
47 lines (47 loc) · 1.14 KB
/
portfolio.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
{
"folders": [
{
"name": "Root",
"path": "."
}
],
"settings": {
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"quickfix.biome": "explicit",
"source.organizeImports": "explicit",
"source.organizeImports.biome": "explicit"
},
"editor.formatOnSave": true,
"[rust]": {
"editor.defaultFormatter": "jinxdash.prettier-rust"
},
"[css]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[html]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
}
},
"extensions": {
"recommendations": ["biomejs.biome", "eamodio.gitlens"]
}
}