granite-guardian / .pre-commit-config.yaml
Deploybot
Deploy from stable branch
41c8f83
Raw
History Blame Contribute Delete
1.58 kB
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-json
- id: check-merge-conflict
- id: check-toml
- id: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.8
hooks:
- id: ruff
args: [--fix]
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
hooks:
- id: pyupgrade
args: ["--py310-plus"]
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
args:
- --line-length=120
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1
hooks:
- id: gitlint
name: gitlint
language: python
entry: gitlint
args: [--staged, --msg-filename]
stages: [commit-msg]
- repo: https://github.com/astral-sh/uv
rev: '0.5.1'
hooks:
- id: uv-lock
- id: uv-export
name: export requirements.txt
args: [--format, requirements.txt, --no-hashes, --no-editable, -o, requirements.txt]
- repo: local
hooks:
- id: filter-requirements
name: filter requirements.txt
entry: sh -c 'grep -v "^\\.$" requirements.txt > /tmp/req.txt && mv /tmp/req.txt requirements.txt'
language: system
files: requirements.txt
stages: [commit]