-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
74 lines (74 loc) · 1.51 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"workspace": {
"members": [
"./examples"
]
},
"tasks": {
"test": "cargo build -p ghjk && deno test --unstable-worker-options --unstable-kv -A tests/*.ts",
"test-doc": "cargo build -p ghjk && deno test --unstable-worker-options --unstable-kv -A --doc src/**/*.ts",
"test-rust": "cargo test",
"ghjk": "cargo run -p ghjk",
"cache": "deno cache **/*/deps.ts",
"check": "deno run -A ./tools/check.ts",
"dev": "deno run -A ./tools/dev.ts"
},
"test": {
"exclude": [
".git",
".dev",
"./target",
".ghjk/**",
".deno-dir/**",
"vendor/**",
// entry points
"./play.ts",
"./tools",
"./examples",
"ghjk.ts",
"install.ts",
"./src/sys_deno/bindings.ts",
"./src/ghjk_ts/bindings.ts",
"./src/ghjk/js"
]
},
"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"
]
}
}
}