https://gitlab.com/tezos/tezos
Revision 48f06956e89db5c623ad9ab81b4ac40a63632945 authored by Anne-Laure on 22 February 2024, 14:10:03 UTC, committed by François Thiré on 28 February 2024, 16:25:49 UTC
1 parent 96043dd
Raw File
Tip revision: 48f06956e89db5c623ad9ab81b4ac40a63632945 authored by Anne-Laure on 22 February 2024, 14:10:03 UTC
Tezt/Tests/Dal/Benchmark: no longer allow several values for parameters
Tip revision: 48f0695
.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" ]
  - repo: https://github.com/hadolint/hadolint
    rev: v2.9.3
    hooks:
      - id: hadolint-docker
  - repo: https://github.com/python-jsonschema/check-jsonschema
    rev: 0.28.0
    hooks:
      - id: check-gitlab-ci
        args: ["--verbose"]
        files: '(\.gitlab-ci\.yml|\.gitlab/ci/.*\.yml)'
back to top