mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-11 00:42:36 +00:00
Migrate all the pre-commit and commit-msg hooks to use pre-commit (https://pre-commit.com/) Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5192>
27 lines
848 B
YAML
27 lines
848 B
YAML
fail_fast: false
|
|
repos:
|
|
- repo: https://github.com/jorisroovers/gitlint
|
|
rev: v0.19.1
|
|
hooks:
|
|
- id: gitlint-ci
|
|
- repo: local
|
|
hooks:
|
|
# Use dotnet format installed on your machine
|
|
- id: dotnet-format
|
|
name: dotnet-format
|
|
language: system
|
|
files: ^subprojects/gstreamer-sharp/.*
|
|
entry: dotnet format subprojects/gstreamer-sharp/gstreamer-sharp.sln -v normal --include
|
|
types_or: ["c#", "vb"]
|
|
- id: gst-indent
|
|
name: gst-indent
|
|
language: python
|
|
entry: ./scripts/gst-indent.py
|
|
types_or: ["c"]
|
|
# The rust hook uses cargo fmt, which requires a Cargo.toml
|
|
# We use a local hook to run rustfmt directly
|
|
- id: rustfmt
|
|
name: rustfmt
|
|
language: system
|
|
entry: rustfmt --verbose --edition 2021
|
|
types_or: ["rust"]
|