mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
13 lines
189 B
Text
13 lines
189 B
Text
|
{
|
||
|
"tasks": {
|
||
|
// this task has documentation
|
||
|
//
|
||
|
// in the form of comments
|
||
|
"lint": "deno lint",
|
||
|
/*
|
||
|
* block comments are fine too
|
||
|
*/
|
||
|
"fmt": "deno fmt"
|
||
|
}
|
||
|
}
|