Set up git hooks by running the following:
git config core.hooksPath .githooks
Now all commits will run the deno pre-commit
task.
We have provided a series of deno tasks for development:
- Format:
deno task fmt
- Lint:
deno task lint
- Test:
deno task test
- Check coverage in browser:
deno task report