https://github.com/ntamas/plfit
Raw File
Tip revision: 651adf2bdb8d6b468f16c930898b8a5c2597a253 authored by Tamas Nepusz on 12 March 2024, 13:46:47 UTC
chore: bumped version to 0.9.6
Tip revision: 651adf2
.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

  - repo: local
    hooks:
      - id: update-contributors-txt
        name: Update CONTRIBUTORS.txt
        language: python
        entry: python3 etc/scripts/update_contributors_txt.py
        pass_filenames: false
back to top