mirror of
https://github.com/craigerl/aprsd.git
synced 2025-04-20 10:18:52 -04:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: detect-private-key
|
|
- id: check-merge-conflict
|
|
- id: check-case-conflict
|
|
- id: check-docstring-first
|
|
- id: check-builtin-literals
|
|
- id: check-illegal-windows-names
|
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
|
rev: v2.7.0
|
|
hooks:
|
|
- id: setup-cfg-fmt
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.9.0
|
|
hooks:
|
|
- id: ruff
|
|
###### Relevant part below ######
|
|
- id: ruff
|
|
args: ["check", "--select", "I", "--fix"]
|
|
###### Relevant part above ######
|
|
- id: ruff-format
|
|
|
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
# uv version.
|
|
rev: 0.5.16
|
|
hooks:
|
|
# Compile requirements
|
|
- id: pip-compile
|
|
name: pip-compile requirements.in
|
|
args: [--resolver, backtracking, --annotation-style=line, requirements.in, -o, requirements.txt]
|
|
- id: pip-compile
|
|
name: pip-compile requirements-dev.in
|
|
args: [--resolver, backtracking, --annotation-style=line, requirements-dev.in, -o, requirements-dev.txt]
|
|
files: ^requirements-dev\.(in|txt)$
|