2023-02-17 18:07:59 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/psf/black
|
|
|
|
rev: 23.1.0
|
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-02-17 20:29:12 +00:00
|
|
|
rev: v4.4.0
|
2023-02-17 18:07:59 +00:00
|
|
|
hooks:
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: trailing-whitespace
|
|
|
|
# Exclude elisp files to not clear page breaks
|
|
|
|
exclude: \.el$
|
|
|
|
- id: check-json
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-yaml
|
2023-02-17 20:29:12 +00:00
|
|
|
|
2023-12-28 12:34:02 +00:00
|
|
|
- repo: https://github.com/pycqa/isort
|
|
|
|
rev: 5.12.0
|
|
|
|
hooks:
|
|
|
|
- id: isort
|
|
|
|
name: isort (python)
|
|
|
|
args: ["--profile", "black", "--filter-files"]
|
|
|
|
|
2023-02-17 20:29:12 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
|
|
rev: v1.0.0
|
|
|
|
hooks:
|
|
|
|
- id: mypy
|
2024-11-24 22:54:26 +00:00
|
|
|
stages: [pre-push, manual]
|
2023-02-17 20:29:12 +00:00
|
|
|
pass_filenames: false
|
|
|
|
args:
|
|
|
|
- --config-file=pyproject.toml
|