Initial template

This commit is contained in:
hh
2026-09-08 19:15:15 +02:00
commit 5bb12b0a4f
10 changed files with 117 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
repos:
- repo: local
hooks:{% if not parts %} []{% endif %}
{% for part in parts %} - id: {{ part }}-fmt
name: {{ part }} fmt
entry: make -C {{ part }} fmt
language: system
files: ^{{ part }}/
pass_filenames: false
- id: {{ part }}-check
name: {{ part }} check
entry: make -C {{ part }} check
language: system
files: ^{{ part }}/
pass_filenames: false
{% endfor %}