2023-05-08 16:03:52 +02:00
|
|
|
repos:
|
2023-09-12 17:28:20 +02:00
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
2023-10-02 22:13:48 +02:00
|
|
|
rev: v0.0.292
|
2023-09-12 17:28:20 +02:00
|
|
|
hooks:
|
|
|
|
- id: ruff
|
|
|
|
name: Run Ruff on Lib/test/
|
|
|
|
args: [--exit-non-zero-on-fix]
|
|
|
|
files: ^Lib/test/
|
2023-10-10 09:52:39 +02:00
|
|
|
- id: ruff
|
|
|
|
name: Run Ruff on Tools/clinic/
|
|
|
|
args: [--exit-non-zero-on-fix, --config=Tools/clinic/.ruff.toml]
|
|
|
|
files: ^Tools/clinic/|Lib/test/test_clinic.py
|
2023-09-12 17:28:20 +02:00
|
|
|
|
2023-05-08 16:03:52 +02:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v4.4.0
|
|
|
|
hooks:
|
2023-09-12 17:28:20 +02:00
|
|
|
- id: check-toml
|
|
|
|
exclude: ^Lib/test/test_tomllib/
|
2023-05-08 16:03:52 +02:00
|
|
|
- id: check-yaml
|
2023-06-25 12:44:23 +02:00
|
|
|
- id: end-of-file-fixer
|
|
|
|
types: [python]
|
2023-09-12 08:37:42 +02:00
|
|
|
exclude: Lib/test/tokenizedata/coding20731.py
|
2023-05-08 16:03:52 +02:00
|
|
|
- id: trailing-whitespace
|
2023-10-10 10:11:51 +02:00
|
|
|
types_or: [c, inc, python, rst]
|
2023-06-18 13:52:05 +02:00
|
|
|
|
2023-10-10 11:17:53 +02:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: python-file-whitespace
|
|
|
|
name: "Check Python file whitespace"
|
|
|
|
entry: 'python Tools/patchcheck/reindent.py --nobackup --newline LF'
|
|
|
|
language: 'system'
|
|
|
|
types: [python]
|
|
|
|
exclude: '^(Lib/test/tokenizedata/|Tools/c-analyzer/cpython/_parser).*$'
|
|
|
|
|
2023-06-18 13:52:05 +02:00
|
|
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
2023-07-22 11:38:47 +02:00
|
|
|
rev: v0.6.8
|
2023-06-18 13:52:05 +02:00
|
|
|
hooks:
|
|
|
|
- id: sphinx-lint
|
|
|
|
args: [--enable=default-role]
|
2023-08-21 15:13:55 +02:00
|
|
|
files: ^Doc/|^Misc/NEWS.d/next/
|
2023-06-18 13:52:05 +02:00
|
|
|
types: [rst]
|
2023-10-10 10:21:58 +02:00
|
|
|
|
|
|
|
- repo: meta
|
|
|
|
hooks:
|
|
|
|
- id: check-hooks-apply
|
|
|
|
- id: check-useless-excludes
|