summaryrefslogtreecommitdiff
path: root/tests/specs/task/doc_comments_no_args/deno.jsonc
blob: 4b6d690c8d23365fd8d5c4f5f52bb579691ce370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "tasks": {
    // this task has documentation
    //
    // in the form of comments
    "lint": "deno lint",
    /*
    * block comments are fine too
    */
    "fmt": "deno fmt"
  }
}