after completing a task, you may want to run these quality checks. it may be easiest to run them all together from a
single command first. to do that, run the deno task allchecks command:
deno task allcheckshere are some individual checks you can also run if needed. generally if allchecks fails, it's most efficient to keep repeatedly calling allchecks until it passes.
deno task lintdeno fmt --check srcto apply formatting, simply run
deno fmt srcdeno check srcdeno task buildif dependencies are missing, you may need to run deno install. assume that the user has already done this and don't
run an install unless you get an error indicating something is missing.