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