VSCode 플러그 인 설치 완료 후 설정 설명
{
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 0,
"files.autoSave": "off",
"eslint.runtime": "",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.codeAction.disableRuleComment": {},
"eslint.codeAction.showDocumentation": {},
"editor.formatOnSave": true,
"vetur.completion.scaffoldSnippetSources": {},
"vetur.format.defaultFormatter.html": "prettier",
// snippet
"editor.snippetSuggestions": "top",
"editor.fontSize": 14,
"editor.fontWeight": "400",
"editor.formatOnType": true,
"guides.enabled": false,
"editor.tabSize": 2,
"git.confirmSync": false,
"editor.renderWhitespace": "boundary",
"editor.cursorBlinking": "smooth",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
"editor.codeLens": true,
// ,
"files.associations": {
"*.vue": "vue",
"*.wxss": "css",
"*.cjson": "jsonc",
"*.wxs": "javascript"
},
// emmet tab
"emmet.triggerExpansionOnTab": true,
// emmet
"emmet.syntaxProfiles": {
"javascript": "jsx",
"vue": "html",
"vue-html": "html"
},
// eslint
"eslint.enable": true,
// eslint
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"git.autofetch": true,
"workbench.colorTheme": "One Dark Pro",
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
}
이 설정 은 vue 든 html 이 든 ctrl+/주석 코드 를 직접 사용 할 수 있 습 니 다.ctrl+s 시 eslint 포맷 코드 를 사용 할 수 있 습 니 다.for,foreach,map 등의 자동 완성 코드 등 일련의 단축 동작 을 입력 하 십시오.VSCode 플러그 인 설치 완료 후 설정 에 대한 자세 한 설명 은 여기 서 소개 합 니 다.더 많은 관련 VSCode 플러그 인 설치 후 설정 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio Code(VSCode)로 키보드로 선택을 할 수 있도록 한다Atom이나 Goland 등의 많은 에디터에서는 Ctrl + Shift + F 등으로 문자를 선택 상태로 할 수 있습니다. 이런 녀석입니다. 보통이라면 아래와 같은 키 바인딩이 자주 사용되는군요. Ctrl + Shi...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.