-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
33 lines (33 loc) · 1.01 KB
/
deno.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"version": "v17.1.0",
"tasks": {
"check": "deno check ./**/*.ts",
"lint": "deno lint ./**/*.ts",
"fmt": "deno fmt ./**/*.ts",
"fmt-check": "deno fmt --check ./**/*.ts",
"reload-cache": "deno cache ./**/*.ts",
"create-pr": "deno run -ERN --allow-run https://raw.githubusercontent.com/KinsonDigital/Infrastructure/refs/tags/v16.0.0/dev-tools/feat-pr-creator-tool.ts",
"gen-release-notes": "deno run -ERN --allow-run https://raw.githubusercontent.com/KinsonDigital/Infrastructure/refs/tags/v16.0.0/dev-tools/release-notes-generator-tool.ts"
},
"lint": {
"exclude": [
"**/playground.ts"
],
"rules": {
"exclude": [
"no-import-prefix"
]
}
},
"fmt": {
"exclude": [
"**/*.md",
"**/playground.ts"
],
"useTabs": true,
"lineWidth": 130,
"indentWidth": 4,
"semiColons": true,
"singleQuote": false
}
}