diff --git a/deno.json b/deno.json index 1289402..ff4d091 100644 --- a/deno.json +++ b/deno.json @@ -1,5 +1,11 @@ { "tasks": { + "check": "deno fmt --check && deno lint && deno check .", "dev": "deno run --allow-net --watch main.ts" + }, + "fmt": { + "exclude": [ + "LICENSE.md" + ] } }