zetviel/.pre-commit-config.yaml
Emil Lerch 90542d8c5b
All checks were successful
Generic zig build / build (push) Successful in 46s
update versions
2026-02-04 16:47:24 -08:00

30 lines
813 B
YAML

# 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: smoke-test
name: Run zig build test
entry: zig
args: ["build", "--verbose", "test"]
language: system
types: [file]
pass_filenames: false
- id: zlint
name: Run zlint
entry: zlint
args: ["--deny-warnings", "--fix"]
language: system
types: [zig]