-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
44 lines (44 loc) · 979 Bytes
/
deno.json
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
{
"tasks": {
"format": "deno fmt ./src/ ./test/",
"lint": "deno lint ./src/ ./test/",
"test": "deno test --coverage=.coverage",
"coverage": "deno coverage .coverage --lcov --exclude=/test/ --exclude=/scripts/ > ./.coverage/coverage.lcov",
"test:watch": "deno test --watch",
"clean": "rm -r ./coverage",
"localTest": "deno run --allow-read --allow-write --allow-run ./scripts/runTest.ts",
"npm": "deno run -A ./scripts/build-npm.ts"
},
"fmt": {
"options": {
"indentWidth": 2,
"lineWidth": 100,
"singleQuote": false,
"useTabs": false,
"proseWrap": "preserve"
},
"exclude": [
".coverage/",
"npm/",
".github/",
"README.md"
]
},
"lint": {
"rules": {
"include": [
"ban-untagged-todo",
"explicit-function-return-type"
]
},
"exclude": [
"npm/"
]
},
"test": {
"exclude": [
"npm/",
".coverage/"
]
}
}