29 lines
858 B
YAML
29 lines
858 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: check-case-conflict
|
|
- id: check-docstring-first
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
# Docformatter 1.7.5 isn't compatible with Pre-commit 4.0
|
|
# - repo: https://github.com/PyCQA/docformatter
|
|
# rev: v1.7.5
|
|
# hooks:
|
|
# - id: docformatter
|
|
# args: [--in-place, --black]
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.9.6
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.1
|
|
hooks:
|
|
- id: codespell
|
|
# remove toml extra once Python 3.10 is no longer supported
|
|
additional_dependencies: ['.[toml]']
|