https://github.com/ntamas/plfit
Revision d2b4078ce9adaf6d95eaf903d34b2adba356d7e4 authored by Tamas Nepusz on 06 May 2022, 20:39:09 UTC, committed by Tamas Nepusz on 06 May 2022, 20:39:09 UTC
1 parent a2f52af
Raw File
Tip revision: d2b4078ce9adaf6d95eaf903d34b2adba356d7e4 authored by Tamas Nepusz on 06 May 2022, 20:39:09 UTC
fix: more rigorous memory cleanup in plfit_continuous() and plfit_discrete()
Tip revision: d2b4078
.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