-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
31 lines (27 loc) · 818 Bytes
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"fmt": {
"include": ["./"],
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"include": ["./"],
"rules": {
"tags": ["recommended"]
}
},
"tasks": {
"check": "deno task check:format;deno task check:types;deno task check:lint",
"check:format": "deno fmt --check ./",
"check:lint": "deno lint ./",
"check:types": "deno check ./.scripts/modules.ts",
"deps:cache": "deno cache ./.scripts/deps.ts",
"format": "deno fmt ./",
"test": "deno task test:stable;deno task test:unstable",
"test:stable": "deno test --allow-all",
"test:unstable": "deno test --allow-all --unstable"
}
}