mirror of
https://github.com/openzim/warc2zim.git
synced 2025-10-19 06:23:16 +00:00
27 lines
721 B
YAML
27 lines
721 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- repo: https://github.com/psf/black
|
|
rev: "25.1.0"
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.9.6
|
|
hooks:
|
|
- id: ruff
|
|
- repo: https://github.com/RobertCraigie/pyright-python
|
|
rev: v1.1.394
|
|
hooks:
|
|
- id: pyright
|
|
name: pyright (system)
|
|
description: 'pyright static type checker'
|
|
entry: pyright
|
|
language: system
|
|
'types_or': [python, pyi]
|
|
require_serial: true
|
|
minimum_pre_commit_version: '2.9.2'
|