feat: check for formatting errors when committing

This commit is contained in:
P. Reis 2024-05-07 14:53:32 -03:00
parent cb89b7a80c
commit cfc119f311
2 changed files with 5 additions and 0 deletions

4
.hooks/pre-commit Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/hook.sh"
deno fmt --check

View File

@ -4,6 +4,7 @@
"tasks": {
"start": "deno run -A src/server.ts",
"dev": "deno run -A --watch src/server.ts",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts",
"debug": "deno run -A --inspect src/server.ts",
"test": "DATABASE_URL=\"sqlite://:memory:\" deno test -A --junit-path=./deno-test.xml",
"check": "deno check src/server.ts",