Pre-commits are a great tool to ensure there is some standard level of quality across the codebase and the commits. Its super easy to bypass if you are in a huge rush for any reason, so you may as well just add them to your codebase.
Quickstart
- Install
pre-commit
: Already done if you followed the UV packaging guide - Create the
.pre-commit-config.yaml
file to specify our pre-commits- Collection of helpful small utilities
- Linting, formatting and type checking with:
ruff
,black
,isort
,pylint
, andmypy
- Install the pre-commit environment
- Run it to ensure it works (this will take longer the very first time as we install dependencies in the pre-commit enviroment)
cat <<EOF > .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0 # Use the latest stable release
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: ["--unsafe"]
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: check-executables-have-shebangs
- id: check-json
- id: detect-private-key
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: pretty-format-json
args: ["--autofix"]
- id: check-toml
- repo: local
hooks:
- id: ruff
name: ruff
entry: uv run ruff check --config='pyproject.toml'
language: system
types: [python]
- repo: local
hooks:
- id: black
name: black
entry: uv run black --config='pyproject.toml'
language: system
types: [python]
- repo: local
hooks:
- id: isort
name: isort
entry: uv run isort
language: system
types: [python]
args: [--profile, black]
- repo: local
hooks:
- id: pylint
name: pylint
entry: uv run pylint --rcfile='pyproject.toml'
language: system
types: [python]
- repo: local
hooks:
- id: mypy
name: mypy
entry: uv run mypy --config-file='pyproject.toml'
language: system
types: [python]
EOF
uv run pre-commit install
uv run pre-commit run --all-files
Command breakdown
cat <<EOF > .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
...
EOF
Create the pre-commit config file. We include:
- a range of utility pre-commits to keep your files tidy
ruff
: Initial fast pass linting, thinkflake8
on steroidsblack
: Very opinionated formatter, but keeps your code consistendisort
: Sort and organise your importspylint
: Deep linting based on static code analysismypy
: Type checking for your python code
uv run pre-commit install
Install the pre-commit script based on your pre-commit config
uv run pre-commit run --all-files
Run all of the pre-commits across all of the files in the codebase (pre-commits by default only run on your staged files).