728x90
반응형
vscode 설치를 하면 환경설정 파일을 아래의 경로에 있다.
C:\Users\cbw\AppData\Roaming\Code\User\settings.json
내 개발환경 셋팅은 아래와 같다. vscode 설치하고 환경파일을 동일하게 설정하면 다른 pc에서도 동일하게 작동한다.
{
"git.autofetch": true,
"git.enableSmartCommit": true,
"python.languageServer": "Pylance",
"explorer.confirmDelete": false,
"git.confirmSync": false,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"files.autoSave": "onFocusChange",
"workbench.iconTheme": "material-icon-theme",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"editor.fontFamily": "D2Coding ligature,Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"[python]": {
"editor.wordBasedSuggestions": false
},
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier-eslint",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.home": "c:\\openjdk-16.0.1_windows-x64_bin\\jdk-16.0.1",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"liveServer.settings.donotShowInfoMsg": true,
"workbench.startupEditor": "none",
"[typescript]": {
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"auto-close-tag.excludedTags": [
"area",
"base",
"br",
"col",
"command",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"meta",
"param",
"source",
"track",
"wbr"
]
}
728x90
반응형
'프로그램 > Vue' 카테고리의 다른 글
엔트리 포인트 진입점 main.js (0) | 2021.09.01 |
---|---|
package.json (0) | 2021.09.01 |
vue.config.js (0) | 2021.09.01 |
vue 다른 컴포넌트 끼리의 통신처리 (0) | 2021.08.26 |
Vue 프로젝트 생성 (0) | 2021.08.24 |
댓글