https://gitlab.com/tezos/tezos
Revision 9b14b9b2f61cfb9be4a7bbeaa5ddac55083cab76 authored by Valentin Chaboche on 09 February 2024, 15:16:17 UTC, committed by Marge Bot on 10 February 2024, 14:05:07 UTC
1 parent 50e9354
Raw File
Tip revision: 9b14b9b2f61cfb9be4a7bbeaa5ddac55083cab76 authored by Valentin Chaboche on 09 February 2024, 15:16:17 UTC
EVM/Kernel: move TezosContracts in configuration.rs
Tip revision: 9b14b9b
.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