YOLO / .pre-commit-config.yaml
henry000's picture
πŸ”‡ [Remove isort verbose logging, annoying
4137804
raw
history blame
599 Bytes
repos:
- repo: https://github.com/psf/black
rev: 24.4.0 # Use the appropriate version or "stable" for the latest stable release
hooks:
- id: black
language_version: python3 # Specify the Python version
exclude: '.*\.yaml$' # Regex pattern to exclude all YAML files
args: ["--line-length", "120"] # Set max line length to 100 characters
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1 # Use the appropriate version or "stable" for the latest stable release
hooks:
- id: isort
args: ["--profile", "black"]