https://gitlab.com/tezos/tezos
Revision 72bf43778239e843f1843e87b9973b5e68e85d30 authored by Marge Bot on 07 February 2024, 19:13:22 UTC, committed by Marge Bot on 07 February 2024, 19:13:22 UTC
Co-authored-by: Emma Turner <emma.turner@trili.tech>

Approved-by: Michael Zaikin <michael.zaikin@trili.tech>
Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com>
Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11670
2 parent s e49d8d7 + 085a8fa
Raw File
Tip revision: 72bf43778239e843f1843e87b9973b5e68e85d30 authored by Marge Bot on 07 February 2024, 19:13:22 UTC
Merge tezos/tezos!11670: SDK: allow large values to be set in installer config
Tip revision: 72bf437
.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