https://gitlab.com/tezos/tezos
Revision 4fe506b0f4df81121461da5d01509d194873c8b9 authored by Marge Bot on 15 February 2024, 20:30:36 UTC, committed by Marge Bot on 15 February 2024, 20:30:36 UTC
Co-authored-by: Lucas Randazzo <lucas@nomadic-labs.com>
Co-authored-by: Julien Tesson <julien.tesson@nomadic-labs.com>

Approved-by: Diane Gallois-Wong <diane.galloiswong@gmail.com>
Approved-by: Julien <julien.tesson@nomadic-labs.com>
Approved-by: Mathias Bourgoin <mathias.bourgoin@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11879
2 parent s b7551ac + 63f0a04
Raw File
Tip revision: 4fe506b0f4df81121461da5d01509d194873c8b9 authored by Marge Bot on 15 February 2024, 20:30:36 UTC
Merge tezos/tezos!11879: Proto/AS: Postpone the insertion of slashings into delegates' slashing history
Tip revision: 4fe506b
.pre-commit-config.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: v3.2.0
    hooks:
      - id: trailing-whitespace
      - id: end-of-file-fixer
  - repo: https://github.com/koalaman/shellcheck-precommit
    rev: v0.9.0
    hooks:
      - id: shellcheck
        args: [ "--external-sources" ]
  - repo: https://github.com/cisagov/pre-commit-shfmt
    rev: v0.0.2
    hooks:
      - id: shfmt
        # These settings must mirror the ones set in `scripts/lint.sh`.
        args: [ "-i", "2", "-sr", "-d" ]
  - repo: https://github.com/arenadotio/pre-commit-ocamlformat
    rev: 0439858
    hooks:
      - id: ocamlformat
        args: [ "-i" ]
back to top