.pre-commit-config.yaml•966 B
repos:
# 코드 포맷팅
- repo: https://github.com/psf/black
rev: 23.12.1
hooks:
- id: black
language_version: python3
args: [--line-length=88]
# Import 정렬
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: [--profile=black, --line-length=88]
# 코드 스타일 및 오류 검사
- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
# 타입 검사
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies: [pandas-stubs]
args: [--ignore-missing-imports]
# 기본적인 파일 검사
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements