Workspace(2)
-
Python VSCode setting - formatter black 설정
formatter는 code를 정리해준다. python에는 다양한 포맷터가 존재한다. 그 중에 Black을 설치할 것이다. 1. Extension 설치 Black formatter을 설치한다. 2. pipenv에 black을 설치한다. pipenv install black 3. settings 설정 workspace의 format on save를 체크한다. 저장시 코드를 정리해준다. Settings 클릭 Workspace에 formatting - Format on Save를 설정한다. { "python.envFile": "${workspaceFolder}/.venv", "python.analysis.typeCheckingMode": "basic", "editor.formatOnSave": true } ...
2023.11.30 -
Python VSCode Setting - launch.json 설정
VSCode에서 F5를 누르면 디버깅하고 싶었다. VScode에는 다 제공한다. 참고 https://code.visualstudio.com/docs/editor/debugging Debugging in Visual Studio Code One of the great things in Visual Studio Code is debugging support. Set breakpoints, step-in, inspect variables and more. code.visualstudio.com Launch.json 설정 아이콘 선택 -> create a launch.json file 클릭한다. Python File 선택한다. .vscode/launch.json에 파일 자동 생성된다. F5 누르면 자동으로 디버..
2023.11.27