Merge branch 'deno-fmt-on-commit' into 'main'

Check for formatting errors when committing

Closes #111

See merge request soapbox-pub/ditto!226
This commit is contained in:
Alex Gleason 2024-05-07 18:00:43 +00:00
commit 5b76efeb94
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",