aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: b21ca204c026331f03df8211b11a1bbaf92a5471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v6.0.0
    hooks:
      - id: end-of-file-fixer
      - id: trailing-whitespace
      - id: mixed-line-ending
        args: [--fix=lf]
  - repo: https://github.com/codespell-project/codespell
    rev: v2.4.1
    hooks:
      - id: codespell
        args: [--quiet-level=2]
  - repo: https://github.com/psf/black-pre-commit-mirror
    rev: 25.9.0
    hooks:
      - id: black