diff options
| author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-03-27 14:14:27 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-27 14:14:27 -0700 |
| commit | 2dc37f411e8947d3c20cd93d1fa1937edc239499 (patch) | |
| tree | 0ecb10fb3cc0e9085130c3683155529c5de74e84 /tests/specs/task/doc_comments_incorrect/deno.jsonc | |
| parent | 68fecc6de4b2e6556adeb2730798bf42017c4be6 (diff) | |
feat(task): Task description in the form of comments (#23101)
Closes #22786.
TLDR;
```jsonc
{
"tasks": {
// Some comment
//
// describing what the task does
"dev": "deno run -A --watch main.ts"
}
}
```
```bash
deno task
```

Diffstat (limited to 'tests/specs/task/doc_comments_incorrect/deno.jsonc')
| -rw-r--r-- | tests/specs/task/doc_comments_incorrect/deno.jsonc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/specs/task/doc_comments_incorrect/deno.jsonc b/tests/specs/task/doc_comments_incorrect/deno.jsonc new file mode 100644 index 000000000..6b27f2850 --- /dev/null +++ b/tests/specs/task/doc_comments_incorrect/deno.jsonc @@ -0,0 +1,7 @@ +{ + "tasks": { + // some docs + // on what this does + "lint": "deno lint" + } +} |
