From 7908c13bb4c9d38c267be51b44bffeb3a5d72b37 Mon Sep 17 00:00:00 2001 From: Simon Hartcher Date: Wed, 4 Jun 2025 10:59:08 +1000 Subject: [PATCH] build: add mise + pre-commit hooks --- .pre-commit-config.yaml | 33 +++++++++++++++++++++++++++++++++ mise.toml | 4 ++++ 2 files changed, 37 insertions(+) create mode 100644 .pre-commit-config.yaml create mode 100644 mise.toml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..55f4cc9 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,33 @@ +# 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 + - id: check-yaml + - id: check-added-large-files + - repo: https://github.com/batmac/pre-commit-zig + rev: v0.3.0 + hooks: + - id: zig-fmt + - id: zig-build + - repo: local + hooks: + - id: zlint + name: Run zig build smoke-test + entry: zig + args: ["build", "--verbose", "smoke-test"] + language: system + types: [file] + pass_filenames: false + + - repo: local + hooks: + - id: zlint + name: Run zlint + entry: zlint + args: ["--deny-warnings", "--fix"] + language: system + types: [zig] diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..ec0e4a4 --- /dev/null +++ b/mise.toml @@ -0,0 +1,4 @@ +[tools] +pre-commit = "latest" +"ubi:DonIsaac/zlint" = "latest" +zig = "0.14.1"