2023-05-08 17:03:52 +03:00
|
|
|
repos:
|
2023-09-14 15:38:54 -07:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2023-10-25 16:04:55 +05:00
|
|
|
rev: v0.1.2
|
2023-09-14 15:38:54 -07:00
|
|
|
hooks:
|
|
|
|
|
- id: ruff
|
|
|
|
|
name: Run Ruff on Lib/test/
|
|
|
|
|
args: [--exit-non-zero-on-fix]
|
|
|
|
|
files: ^Lib/test/
|
2023-10-10 10:58:56 +02:00
|
|
|
- id: ruff
|
2023-10-10 12:35:21 +02:00
|
|
|
name: Run Ruff on Argument Clinic
|
2023-10-10 10:58:56 +02:00
|
|
|
args: [--exit-non-zero-on-fix, --config=Tools/clinic/.ruff.toml]
|
|
|
|
|
files: ^Tools/clinic/|Lib/test/test_clinic.py
|
2023-09-14 15:38:54 -07:00
|
|
|
|
2023-05-08 17:03:52 +03:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-17 16:01:57 +03:00
|
|
|
rev: v4.5.0
|
2023-05-08 17:03:52 +03:00
|
|
|
hooks:
|
2023-09-14 15:38:54 -07:00
|
|
|
- id: check-toml
|
|
|
|
|
exclude: ^Lib/test/test_tomllib/
|
2023-05-08 17:03:52 +03:00
|
|
|
- id: check-yaml
|
2023-06-25 04:18:22 -07:00
|
|
|
- id: end-of-file-fixer
|
|
|
|
|
types: [python]
|
2023-10-02 17:11:24 +02:00
|
|
|
exclude: Lib/test/tokenizedata/coding20731.py
|
2023-05-08 17:03:52 +03:00
|
|
|
- id: trailing-whitespace
|
2023-10-10 10:39:55 +02:00
|
|
|
types_or: [c, inc, python, rst]
|
2023-06-18 05:21:34 -07:00
|
|
|
|
|
|
|
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
2023-10-17 07:29:43 +02:00
|
|
|
rev: v0.8.1
|
2023-06-18 05:21:34 -07:00
|
|
|
hooks:
|
|
|
|
|
- id: sphinx-lint
|
2023-10-17 07:29:43 +02:00
|
|
|
args: [--enable=default-role]
|
2023-08-21 16:32:33 +03:00
|
|
|
files: ^Doc/|^Misc/NEWS.d/next/
|
2023-10-10 10:24:10 +02:00
|
|
|
|
|
|
|
|
- repo: meta
|
|
|
|
|
hooks:
|
|
|
|
|
- id: check-hooks-apply
|
|
|
|
|
- id: check-useless-excludes
|