Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/githooks/deno.json

Allows you to associate deno tasks with githooks by extending the native deno.json configuration file
Latest
File
{ "tasks": { "start": "deno run -A githooks.ts", "check": "deno fmt --check && deno lint" }, "githooks": { "pre-commit": ["check"] }}