"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic", //주석 기울이기
}
}
]
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.fontFamily": "Consolas, 'Courier New', 'Noto Sans Mono CJK KR Light',monospace"
|
윈도우 기준 ctrl shift p -> Open Settings (default아님) settings.json
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
|
{
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.startupEditor": "none",
"eslint.alwaysShowStatus": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"material-icon-theme.activeIconPack": "nest"
}
|
{
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.startupEditor": "none",
"eslint.alwaysShowStatus": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"material-icon-theme.activeIconPack": "nest",
"typescript.updateImportsOnFileMove.enabled": "always",
"[python]": {
"editor.formatOnType": true
},
"editor.quickSuggestions": {
"strings": true
},
"css.validate": false,
"editor.inlineSuggest.enabled": true
}
'잡단한것들 > CS메모장' 카테고리의 다른 글
git 로컬 초기화 (0) | 2021.09.28 |
---|---|
도커 (0) | 2021.07.15 |
hash와 history (0) | 2021.06.22 |
보일러 플레이트 코드 (0) | 2021.04.27 |
스크립트, 컴파일 (0) | 2021.04.27 |