From 442871e504890345d7685df96a75c24cf3ab70f5 Mon Sep 17 00:00:00 2001 From: Garrett Dawson Date: Tue, 27 Aug 2024 23:30:23 -0600 Subject: [PATCH] fix: revise how `deno task check:types` is performed (#683) Co-authored-by: Asher Gomez --- .github/ISSUE_TEMPLATE/bug_report.md | 1 - .github/ISSUE_TEMPLATE/feature_request.md | 1 - deno.json | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 3e7673877..90361bc59 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,6 @@ about: Create a report to help us improve title: Bug report labels: bug assignees: '' - --- **Describe the bug** A clear and concise description of what the bug is. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 4f4cfb0d8..08b8df6a8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -4,7 +4,6 @@ about: Suggest an idea or voice a concern title: 'Feature request: ' labels: enhancement assignees: '' - --- **Is your feature request related to a problem? Please describe.** A clear and diff --git a/deno.json b/deno.json index 217f58233..dad683a87 100644 --- a/deno.json +++ b/deno.json @@ -10,7 +10,7 @@ "start": "deno run --unstable-kv -A --watch=static/,routes/ --env dev.ts", "test": "DENO_KV_PATH=:memory: deno test -A --parallel --unstable-kv --coverage", "check:license": "deno run --allow-read --allow-write tasks/check_license.ts", - "check:types": "deno check **/*.ts && deno check **/*.tsx", + "check:types": "deno check main.ts && deno check dev.ts && deno check tasks/*.ts", "ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test", "cov:gen": "deno coverage coverage --lcov --exclude='.tsx' --output=cov.lcov", "update": "deno run -A -r https://fresh.deno.dev/update .",