2020-09-30 08:39:14 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-09 21:38:32 +00:00
|
|
|
rev: v4.5.0
|
2020-09-30 08:39:14 +00:00
|
|
|
hooks:
|
|
|
|
- id: check-executables-have-shebangs
|
2023-03-15 12:58:25 +00:00
|
|
|
- id: check-toml
|
2020-09-30 08:39:14 +00:00
|
|
|
- id: check-yaml
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
types: [python]
|
2020-10-15 11:20:43 +00:00
|
|
|
- id: trailing-whitespace
|
2020-09-30 08:39:14 +00:00
|
|
|
- id: requirements-txt-fixer
|
2021-11-16 14:01:17 +00:00
|
|
|
|
2022-10-28 13:54:54 +00:00
|
|
|
- repo: https://github.com/MarcoGorelli/auto-walrus
|
2022-12-19 22:04:34 +00:00
|
|
|
rev: v0.2.2
|
2022-10-28 13:54:54 +00:00
|
|
|
hooks:
|
|
|
|
- id: auto-walrus
|
|
|
|
|
2023-06-22 11:49:09 +00:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2023-10-23 20:29:16 +00:00
|
|
|
rev: v0.1.1
|
2023-03-15 12:58:25 +00:00
|
|
|
hooks:
|
|
|
|
- id: ruff
|
|
|
|
|
2020-09-30 08:39:14 +00:00
|
|
|
- repo: https://github.com/psf/black
|
2023-10-23 20:29:16 +00:00
|
|
|
rev: 23.10.0
|
2020-09-30 08:39:14 +00:00
|
|
|
hooks:
|
|
|
|
- id: black
|
2021-11-16 14:01:17 +00:00
|
|
|
|
2023-03-15 12:58:25 +00:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2023-10-07 19:32:28 +00:00
|
|
|
rev: v2.2.6
|
2020-09-30 08:39:14 +00:00
|
|
|
hooks:
|
2023-03-15 12:58:25 +00:00
|
|
|
- id: codespell
|
|
|
|
additional_dependencies:
|
|
|
|
- tomli
|
2021-11-16 14:01:17 +00:00
|
|
|
|
2023-02-01 13:14:54 +00:00
|
|
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
2023-10-03 03:05:43 +00:00
|
|
|
rev: "1.2.0"
|
2023-02-01 13:14:54 +00:00
|
|
|
hooks:
|
|
|
|
- id: pyproject-fmt
|
|
|
|
|
2023-03-15 12:58:25 +00:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: validate-filenames
|
|
|
|
name: Validate filenames
|
|
|
|
entry: ./scripts/validate_filenames.py
|
|
|
|
language: script
|
|
|
|
pass_filenames: false
|
|
|
|
|
2023-02-01 13:14:54 +00:00
|
|
|
- repo: https://github.com/abravalheri/validate-pyproject
|
2023-10-16 18:23:33 +00:00
|
|
|
rev: v0.15
|
2023-02-01 13:14:54 +00:00
|
|
|
hooks:
|
|
|
|
- id: validate-pyproject
|
|
|
|
|
2021-11-16 14:01:17 +00:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
2023-10-23 20:29:16 +00:00
|
|
|
rev: v1.6.1
|
2021-11-16 14:01:17 +00:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
|
|
|
args:
|
|
|
|
- --ignore-missing-imports
|
2022-10-14 14:34:44 +00:00
|
|
|
- --install-types # See mirrors-mypy README.md
|
2021-11-16 14:01:17 +00:00
|
|
|
- --non-interactive
|
2022-10-02 19:59:17 +00:00
|
|
|
additional_dependencies: [types-requests]
|