https://github.com/python/cpython
Raw File
Tip revision: 97a6a418167f1c8bbb014fab813e440b88cf2221 authored by Thomas Wouters on 11 July 2023, 12:22:17 UTC
Python 3.12.0b4
Tip revision: 97a6a41
.pre-commit-config.yaml
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
      - id: check-yaml
      - id: end-of-file-fixer
        types: [python]
        exclude: Lib/test/coding20731.py
      - id: trailing-whitespace
        types_or: [c, python, rst]

  - repo: https://github.com/sphinx-contrib/sphinx-lint
    rev: v0.6.7
    hooks:
      - id: sphinx-lint
        args: [--enable=default-role]
        files: ^Doc/
        types: [rst]
back to top