Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 470 Bytes

about_pre-commit.md

File metadata and controls

26 lines (21 loc) · 470 Bytes

Setting

install isort, black, flake8, pre-commit

pre-commit 실행 방법

- 테스트용(stage에 올라온 파일만 검사) :
git add [file] > pre-commit run
# stage에 올라온 파일만 검사

- 실행 방법 :
git add . > git commit -m '[write the message]'

custom file - 수정 파일

- pyproject.toml : isort, black
max-line-length = 120
skip = [".gitignore"]

- setup.cfg : flacke8

exclude = .gitignore, .git
ignore = E266,F841