swh:1:snp:406bc3eca7a1023d0c025409de8c15369a4fb6b9
Raw File
Tip revision: 6de5b1468c1851675105537673226fa2af4d9e68 authored by Tamas Nepusz on 09 September 2022, 09:32:21 UTC
fix: avoid allocations of zero-length blocks
Tip revision: 6de5b14
.pre-commit-config.yaml
fail_fast: true
exclude: "(^vendor/|\\.patch$)"

repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v3.4.0
    hooks:
      - id: mixed-line-ending
        args: ["--fix=lf"]
        exclude: "data/"
      - id: end-of-file-fixer
      - id: trailing-whitespace
        exclude: "data/"
      - id: check-merge-conflict
      - id: fix-byte-order-marker
back to top