Skip to content
Snippets Groups Projects
Select Git revision
  • c22ec5812d1ef874d1adb7c7d9aa9cae29e1950a
  • main default protected
  • release-2025-06-11-with-patches protected
  • release-2025-05-15-with-patches protected
  • release-2025-03-27-with-patches protected
  • release-2024-12-30-with-client-builder protected
  • release-2024-12-26-with-client-builder protected
  • release-2024-11-05-with-client-builder protected
  • release-2024-08-16-with-client-builder protected
  • release-2024-09-09-with-client-builder protected
  • release-2024-08-28-with-client-builder protected
  • release-2024-10-09-with-client-builder protected
  • sbuttgereit/expose_client_builder_with_hyper_1_0
  • release-2025-06-11
  • release-2025-06-03
  • release-2025-05-19
  • release-2025-05-15
  • release-2025-05-09
  • release-2025-05-02
  • release-2025-04-23
  • release-2025-03-27
  • release-2025-03-25
  • release-2025-03-10
  • release-2025-03-04
  • release-2025-02-20
  • release-2025-02-12
  • release-2025-02-03
  • release-2025-01-28
  • release-2025-01-23
  • release-2025-01-17
  • release-2025-01-14
  • release-2024-12-30
  • release-2024-12-26
33 results

.pre-commit-config.yaml

Blame
  • .pre-commit-config.yaml 827 B
    repos:
    - repo: https://github.com/pre-commit/pre-commit-hooks
      rev: v2.3.0
      hooks:
      - id: check-yaml
      - id: end-of-file-fixer
      - id: trailing-whitespace
    - repo: local
      hooks:
      - id: kotlin-block-quotes
        name: Kotlin Block Quotes
        entry: ./.pre-commit-hooks/kotlin-block-quotes.py
        language: python
        files: ^.*\.kt$
      - id: license-header-check
        name: License Header Check
        entry: ./.pre-commit-hooks/license-header.sh
        language: system
        files: ^.*$
        pass_filenames: false
    - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
      rev: v1.6.1
      hooks:
      - id: pretty-format-kotlin
        args: [--autofix, --ktlint-version, 0.40.0]
      - id: pretty-format-yaml
        args: [--autofix, --indent, '2']
      - id: pretty-format-rust
        entry: rustfmt --edition 2018
        files: ^.*\.rs$