A command-line journaling application
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clean up and simplify builds and lints

bitquabit.com 146c9156 38d4f957

verified
+6 -2
+1 -1
.builds/test.yml
··· 7 7 tasks: 8 8 - check: | 9 9 cd hayom 10 - deno check 10 + just check 11 11 - test: | 12 12 cd hayom 13 13 just test
+4
Justfile
··· 1 1 install: 2 2 deno task install 3 3 4 + check: 5 + deno task check 6 + deno task lint 7 + 4 8 test: 5 9 deno task test 6 10
+1 -1
deno.jsonc
··· 17 17 "fmt": "deno fmt", 18 18 "fmt:check": "deno fmt --check", 19 19 "lint": "deno lint", 20 - "check": "deno check **/*.ts" 20 + "check": "deno check **/*.ts && deno task fmt:check" 21 21 } 22 22 }