-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
21 lines (21 loc) · 752 Bytes
/
deno.jsonc
File metadata and controls
21 lines (21 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"exclude": [
"docs/**",
".coverage/**",
".worktrees/**"
],
"lint": {
"rules": {
"exclude": ["no-import-prefix"]
}
},
"tasks": {
"check": "deno check ./**/*.ts",
"test": "deno test -A --parallel --shuffle --doc",
"test:coverage": "deno test -A --parallel --shuffle --doc --coverage=.coverage --ignore=denops/fall/custom_test.ts",
"coverage": "deno coverage .coverage --exclude=testdata/",
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=deno.land,jsr.io,registry.npmjs.org jsr:@molt/cli ./**/*.ts",
"update:write": "deno task -q update --write",
"update:commit": "deno task -q update --commit --prefix :package: --pre-commit=fmt,lint"
}
}