-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
47 lines (47 loc) · 1.17 KB
/
deno.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"workspace": [
"./packages/sse",
"./packages/planigale",
"./packages/body-parser",
"./packages/schema",
"./packages/testing",
"./packages/querystring"
],
"tasks": {
"version": "deno run -A scripts/version.ts",
"build": "deno run -A scripts/copy_files.ts && deno fmt",
"publish": "deno task build && deno publish",
"test": "deno test -A && deno task build",
"check": "deno lint && deno fmt --check && deno test -A && deno publish --dry-run --allow-dirty",
"check-fmt": "deno lint && deno fmt && deno fmt --check && deno test -A --coverage=cov_profile && deno publish --dry-run --allow-dirty && deno coverage cov_profile",
"ck": "deno task check && cd packages/sse && deno task check"
},
"exclude": [
"./npm"
],
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"no-slow-types",
"missing-explicit-return-type"
],
"exclude": [
"require-await"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
]
}
}