-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
33 lines (33 loc) · 942 Bytes
/
settings.json
File metadata and controls
33 lines (33 loc) · 942 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
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
// 기본 포매터 Biome
"editor.defaultFormatter": "biomejs.biome",
// 언어별 고정
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
// JSONC는 VS Code 기본 포매터 유지
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// (선택) Biome 로그 자세히 보기
"biome.trace.server": "verbose",
"typescript.tsdk": "node_modules/typescript/lib"
}