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