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
|
2024-09-23 16:09:27 -07:00
|
|
|
rev: v0.6.7
|
2023-09-14 15:38:54 -07:00
|
|
|
hooks:
|
|
|
|
|
- id: ruff
|
2024-07-19 13:26:32 +01:00
|
|
|
name: Run Ruff (lint) on Doc/
|
|
|
|
|
args: [--exit-non-zero-on-fix]
|
|
|
|
|
files: ^Doc/
|
|
|
|
|
- id: ruff
|
|
|
|
|
name: Run Ruff (lint) on Lib/test/
|
2023-09-14 15:38:54 -07:00
|
|
|
args: [--exit-non-zero-on-fix]
|
|
|
|
|
files: ^Lib/test/
|
2023-10-10 10:58:56 +02:00
|
|
|
- id: ruff
|
2024-07-19 13:26:32 +01:00
|
|
|
name: Run Ruff (lint) 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
|
2024-07-19 13:26:32 +01:00
|
|
|
- id: ruff-format
|
|
|
|
|
name: Run Ruff (format) on Doc/
|
|
|
|
|
args: [--check]
|
|
|
|
|
files: ^Doc/
|
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:
|
2024-03-26 15:12:36 +01:00
|
|
|
- id: check-case-conflict
|
|
|
|
|
- id: check-merge-conflict
|
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-12-12 17:30:00 +01:00
|
|
|
rev: v0.9.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]
|
2024-01-13 00:58:16 +02:00
|
|
|
files: ^Doc/|^Misc/NEWS.d/
|
2023-10-10 10:24:10 +02:00
|
|
|
|
|
|
|
|
- repo: meta
|
|
|
|
|
hooks:
|
|
|
|
|
- id: check-hooks-apply
|
|
|
|
|
- id: check-useless-excludes
|