-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.jsonc
48 lines (48 loc) · 979 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"tasks": {
"test": "cargo build -p ghjk && deno test --unstable-worker-options --unstable-kv -A tests/*",
"self": "cargo run -p ghjk",
"cache": "deno cache deps/*",
"check": "deno run -A ./tools/check.ts",
"dev": "deno run -A ./tools/dev.ts"
},
"fmt": {
"exclude": [
".git",
".dev",
"*.md",
"**/*.md",
".ghjk/**",
".deno-dir/**",
"vendor/**",
"./target/"
]
},
"lint": {
"exclude": [
".git",
".dev",
".deno-dir/**",
"ghjk.ts",
"play.ts",
"vendor/**",
"./target/"
],
"rules": {
"include": [
"no-console",
"no-sync-fn-in-async-fn",
"no-external-import",
"no-inferrable-types",
"no-self-compare",
"no-throw-literal"
// "verbatim-module-syntax"
// "no-await-in-loop"
// "ban-untagged-todo"
],
"exclude": [
"no-explicit-any"
]
}
}
}