From ea05f60be942c4d9c74f139c002af8413daeefe4 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 4 Feb 2026 16:53:46 -0800 Subject: [PATCH] update versions --- .mise.toml | 8 ++++---- .pre-commit-config.yaml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 .pre-commit-config.yaml diff --git a/.mise.toml b/.mise.toml index a42cce9..c2b89c2 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,5 +1,5 @@ [tools] -zig = "0.15.1" -zls = "0.15.0" -pre-commit = "latest" -"ubi:DonIsaac/zlint" = "latest" +zig = "0.15.2" +zls = "0.15.1" +prek = "0.3.1" +"ubi:DonIsaac/zlint" = "0.7.9" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..8235590 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,30 @@ +# 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: v6.0.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: test + # name: Run zig build test + # entry: zig + # args: ["build", "test"] + # language: system + # types: [file] + # pass_filenames: false + - id: zlint + name: Run zlint + entry: zlint + args: ["--deny-warnings", "--fix"] + language: system + types: [zig]