2020-09-30 08:39:14 +00:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2024-10-07 20:49:29 +00:00
|
|
|
rev: v5.0.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
|
2024-04-30 04:58:03 +00:00
|
|
|
rev: 0.3.4
|
2022-10-28 13:54:54 +00:00
|
|
|
hooks:
|
2024-01-13 11:24:58 +00:00
|
|
|
- id: auto-walrus
|
2022-10-28 13:54:54 +00:00
|
|
|
|
2023-06-22 11:49:09 +00:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2024-10-07 20:49:29 +00:00
|
|
|
rev: v0.6.9
|
2023-03-15 12:58:25 +00:00
|
|
|
hooks:
|
|
|
|
- id: ruff
|
2024-01-16 08:39:54 +00:00
|
|
|
- id: ruff-format
|
2021-11-16 14:01:17 +00:00
|
|
|
|
2023-03-15 12:58:25 +00:00
|
|
|
- repo: https://github.com/codespell-project/codespell
|
2024-05-28 01:56:48 +00:00
|
|
|
rev: v2.3.0
|
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
|
2024-09-23 19:45:14 +00:00
|
|
|
rev: "2.2.4"
|
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
|
2024-09-30 20:16:17 +00:00
|
|
|
rev: v0.20.2
|
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
|
2024-08-26 19:49:42 +00:00
|
|
|
rev: v1.11.2
|
2021-11-16 14:01:17 +00:00
|
|
|
hooks:
|
|
|
|
- id: mypy
|
|
|
|
args:
|
2024-07-02 05:02:29 +00:00
|
|
|
- --explicit-package-bases
|
2021-11-16 14:01:17 +00:00
|
|
|
- --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]
|
2024-01-13 11:24:58 +00:00
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2024-01-15 18:19:36 +00:00
|
|
|
rev: "v4.0.0-alpha.8"
|
2024-01-13 11:24:58 +00:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or: [toml, yaml]
|