한국어
확장 프로그램과 린팅 도구로 Python 개발 환경 설정하기
uv
pip install uv
ruff
pip install ruff
pip install black
settings.json
{ "python.formatting.provider": "black", "editor.formatOnSave": true, "python.formatting.blackArgs": ["--line-length", "88"] }
pip install pylint
{ "python.linting.enabled": true, "python.linting.pylintEnabled": true, "python.linting.lintOnSave": true }
pip install mypy
{ "python.linting.mypyEnabled": true }
launch.json
이 페이지가 도움이 되었나요?