-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdeno.jsonc
More file actions
30 lines (30 loc) · 764 Bytes
/
deno.jsonc
File metadata and controls
30 lines (30 loc) · 764 Bytes
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
{
"tasks": {
"check": "deno cache --check=all index.ts",
"dev": "deno fmt && deno lint && deno task check",
"backport": "deno run --no-prompt --allow-import=cdn.skypack.dev,deno.land --allow-read=. --allow-write=. https://deno.land/x/deno2node@v1.7.2/src/cli.ts tsconfig.json",
"clean": "git clean -fX '*.d.ts'"
},
"fmt": { "proseWrap": "preserve" },
"lint": {
"exclude": [
"api.d.ts",
"inline.d.ts",
"manage.d.ts",
"markup.d.ts",
"message.d.ts",
"methods.d.ts",
"mod.d.ts",
"passport.d.ts",
"payment.d.ts",
"settings.d.ts",
"update.d.ts"
],
"rules": {
"exclude": [
// Many types have no properties
"no-empty-interface"
]
}
}
}