-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 1.33 KB
/
Copy pathdeno.json
File metadata and controls
35 lines (35 loc) · 1.33 KB
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
{
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"tasks": {
"test-tooling": "deno run --allow-read --allow-write --allow-run scripts/test-tooling-integration.ts",
"test": "deno run --allow-read --allow-write --allow-run scripts/test-all-examples.ts",
"test-oneliners": "deno run --allow-read --allow-write --allow-run scripts/test-oneliners.ts",
"extract-examples": "deno run --allow-read --allow-write --allow-run scripts/extract-examples.ts",
"validate-docs": "deno run --allow-read scripts/validate-docs-status.ts",
"lint-markdown": "deno run --allow-read --allow-write --allow-run scripts/lint-markdown.ts",
"update-status": "deno run --allow-read --allow-write --allow-run scripts/update-docs-status.ts",
"generate-report": "deno run --allow-read --allow-write scripts/generate-status-report.ts"
},
"imports": {
"@std/fs": "https://deno.land/std@0.224.0/fs/mod.ts",
"@std/path": "https://deno.land/std@0.224.0/path/mod.ts",
"@std/yaml": "https://deno.land/std@0.224.0/yaml/mod.ts",
"@std/json": "https://deno.land/std@0.224.0/json/mod.ts"
}
}