-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 940 Bytes
/
Copy pathdeno.json
File metadata and controls
34 lines (34 loc) · 940 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
31
32
33
34
{
"fmt": {
"exclude": ["docs/"],
"bracePosition": "sameLine",
"indentWidth": 2,
"lineWidth": 100,
"proseWrap": "preserve",
"semiColons": false,
"singleBodyPosition": "nextLine",
"singleQuote": true,
"spaceAround": false,
"spaceSurroundingProperties": true,
"trailingCommas": "never",
"useBraces": "always",
"useTabs": false
},
"lint": {
"include": ["src/"],
"rules": {
"tags": ["fresh", "jsr", "jsx", "react", "recommended", "workspace"],
"exclude": ["no-console", "no-external-import", "prefer-ascii", "prefer-primordials"]
}
},
"imports": {
"@neabyte/deserve": "jsr:@neabyte/deserve@^0.14.0",
"@routes/": "./routes/",
"@schemas/": "./schemas/",
"@views/": "./views/"
},
"tasks": {
"start": "deno run --allow-net --allow-read --allow-env main.ts",
"dev": "deno run --watch --allow-net --allow-read --allow-env main.ts"
}
}