-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathdeno.json
More file actions
27 lines (27 loc) · 563 Bytes
/
deno.json
File metadata and controls
27 lines (27 loc) · 563 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
{
"tasks": {
"start": "deno run -P=putout packages/putout/bin/tracer.mjs"
},
"lint": {
"exclude": [
"**/*fixture"
],
"rules": {
"exclude": [
"no-unused-vars",
"no-cond-assign",
"no-control-regex",
"no-var",
"require-await"
]
}
},
"permissions": {
"putout": {
"env": true,
"read": true,
"sys": true,
"write": true
}
}
}