https://github.com/ntamas/plfit
Revision 6aff30e9b45f30fd636eeb34a5997c1360aafd11 authored by Tamas Nepusz on 04 January 2022, 10:07:01 UTC, committed by Tamas Nepusz on 04 January 2022, 10:09:51 UTC
1 parent 0271ac7
Raw File
Tip revision: 6aff30e9b45f30fd636eeb34a5997c1360aafd11 authored by Tamas Nepusz on 04 January 2022, 10:07:01 UTC
ci: added Travis configuration file for some exotic architectures
Tip revision: 6aff30e
.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