From 09235151466ffd447828aef0ea8a77a6d7f3957f Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Mon, 14 Jul 2025 16:36:18 -0700 Subject: [PATCH] add pre commit config --- .pre-commit-config.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..26be8bf --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,32 @@ +# 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 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]