PySide6-Code-Tutorial/.pre-commit-config.yaml
2023-11-17 22:17:50 +08:00

23 lines
453 B
YAML

fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-toml
- id: check-yaml
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: 23.10.1
hooks:
- id: black
args: [--config, "./pyproject.toml"]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: [--settings-path, "./pyproject.toml"]