-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdeno.jsonc
30 lines (30 loc) · 1.03 KB
/
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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"fmt": {
"include": [
"src",
"tests",
"docs",
"README.md",
"scripts",
".github/maintainers_guide.md",
".github/CONTRIBUTING.md"
],
"exclude": ["src/schema/slack/functions/_scripts/functions.json"],
"semiColons": true,
"indentWidth": 2,
"lineWidth": 80,
"proseWrap": "always",
"singleQuote": false,
"useTabs": false
},
"lint": {
"include": ["src", "tests", "scripts"],
"exclude": ["src/schema/slack/functions/_scripts/functions.json", "**/*.md"]
},
"tasks": {
"test": "deno fmt --check && deno lint && deno bundle src/mod.ts && deno test --allow-read --allow-run --parallel src/ tests/",
"coverage": "rm -rf .coverage && deno test --reporter=dot --parallel --allow-read --coverage=.coverage src/ && deno coverage --exclude=fixtures --exclude=_test --lcov --output=lcov.info .coverage && deno run --allow-read https://deno.land/x/[email protected]/cli.ts"
},
"lock": false
}