https://gitlab.com/tezos/tezos
Revision 5476dbf6dede8e10770a4e4eac016b0a7c14dde5 authored by Marge Bot on 29 February 2024, 09:37:45 UTC, committed by Marge Bot on 29 February 2024, 09:37:45 UTC
Co-authored-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com>

Approved-by: Romain <romain@nomadic-labs.com>
Approved-by: Philippe Wang <philippe.wang@gmail.com>
Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11500
2 parent s cfa7c88 + 5697605
Raw File
Tip revision: 5476dbf6dede8e10770a4e4eac016b0a7c14dde5 authored by Marge Bot on 29 February 2024, 09:37:45 UTC
Merge tezos/tezos!11500: CI-in-OCaml: [*release_tag(test)] pipelines
Tip revision: 5476dbf
.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