728x90
반응형
python code reformatter black with pycharm
$ pip install black
$ which black
/../pyenv/path/bin/black # 이거 복사
pycharm 실행 > Preference > Tools > External Tools > +
클릭
Name: black
Program: /../pyenv/path/bin/black
# 위에 복사한 것
Arguments: $FilePath$
Working directory: /../pyenv/path/bin
# 복사한 것에서 /black
삭제
Preference > Tools > File Watchers > +
버튼 > custom 클릭
Name: black
File Type: python
Scope: Project Files
Program: /../pyenv/path/bin/black
# 위에 복사한 것
Arguments: $FilePath$
Output paths to refresh: $FilePath$
Working Directory: $ProjectFileDir$
Advanced options
Auto-save edited files to trigger the watcher 체크 해제
Trigger the watcher on external changes 체크
https://black.readthedocs.io/en/stable/editor_integration.html
728x90
728x90
BIG
'Programming > Python' 카테고리의 다른 글
time 명령어를 이용한 간단한 처리 시간 측정 (0) | 2020.06.17 |
---|---|
파이썬 정규식(regular expression:regex) 사용 - 일부만 추출 (0) | 2020.06.15 |
패키지, 모듈, import 에러 (0) | 2020.06.12 |
path - python, pathlib (0) | 2020.06.11 |
python virtualenv 가상환경 셋팅 (0) | 2020.06.05 |
댓글