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
|
2024-03-26 11:09:09 -03:00
|
|
|
rev: v0.3.4
|
2023-09-12 12:28:20 -03:00
|
|
|
hooks:
|
|
|
|
- id: ruff
|
2024-07-19 09:30:54 -03: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-12 12:28:20 -03:00
|
|
|
args: [--exit-non-zero-on-fix]
|
|
|
|
files: ^Lib/test/
|
2023-10-10 04:52:39 -03:00
|
|
|
- id: ruff
|
2024-07-19 09:30:54 -03:00
|
|
|
name: Run Ruff (lint) 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
|
2024-07-19 09:30:54 -03:00
|
|
|
- id: ruff-format
|
|
|
|
name: Run Ruff (format) on Doc/
|
|
|
|
args: [--check]
|
|
|
|
files: ^Doc/
|
2023-09-12 12:28:20 -03:00
|
|
|
|
2024-05-03 14:49:51 -03:00
|
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
|
|
rev: 24.4.2
|
|
|
|
hooks:
|
|
|
|
- id: black
|
|
|
|
name: Run Black on Tools/jit/
|
|
|
|
files: ^Tools/jit/
|
|
|
|
language_version: python3.12
|
|
|
|
|
2023-05-08 11:03:52 -03:00
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-17 07:32:29 -03:00
|
|
|
rev: v4.5.0
|
2023-05-08 11:03:52 -03:00
|
|
|
hooks:
|
2024-03-26 11:09:09 -03:00
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-merge-conflict
|
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-12-12 12:29:08 -04:00
|
|
|
rev: v0.9.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]
|
2024-01-12 18:25:04 -04:00
|
|
|
files: ^Doc/|^Misc/NEWS.d/
|
2023-10-10 05:21:58 -03:00
|
|
|
|
|
|
|
- repo: meta
|
|
|
|
hooks:
|
|
|
|
- id: check-hooks-apply
|
|
|
|
- id: check-useless-excludes
|