Py2exe-GUI/.pre-commit-config.yaml

28 lines
562 B
YAML
Raw Permalink Normal View History

fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-toml
- id: check-yaml
- id: trailing-whitespace
- id: end-of-file-fixer
2023-12-20 09:27:31 +08:00
- repo: https://github.com/psf/black-pre-commit-mirror
2024-08-29 07:34:19 +08:00
rev: 24.8.0
hooks:
- id: black
2023-12-20 09:27:31 +08:00
args: ["--config", "pyproject.toml"]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: [--settings-path, "./pyproject.toml"]
- repo: https://github.com/astral-sh/ruff-pre-commit
2024-08-29 07:34:19 +08:00
rev: v0.6.2
hooks:
- id: ruff