최대 1 분 소요

Vscode 에서 Python 을 사용할때 정해진 규칙 중 가장 많이 사용하는게 Black 이다 한번 적용해보자

black 설치

pip install black
or
pip3 install black

poetry 사용할시

poetry add black

vscode Black formatting 적용하기

control + shift + p 를 눌러 setting.json 검색

맥일시 command 로 입력

"[python]": {
    "editor.formatOnType": true,
    "editor.defaultFormatter": "ms-python.python"
  },
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"python.linting.pylintEnabled": true,

추가해 주면 된다

댓글남기기