-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdprint.json
35 lines (35 loc) · 960 Bytes
/
dprint.json
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
{
"incremental": true,
"typescript": {
"deno": true,
"quoteStyle": "preferSingle",
"binaryExpression.operatorPosition": "sameLine",
"semiColons": "asi"
},
"json": {
"deno": true,
"indentWidth": 2,
"useTabs": false
},
"markdown": {
"deno": true
},
"toml": {
"deno": true
},
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs,json,md,toml,html}"],
"excludes": [
"**/node_modules",
"**/*-lock.json",
".git",
"**/*-lock.json"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.89.1.wasm",
"https://plugins.dprint.dev/json-0.19.1.wasm",
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/toml-0.6.0.wasm",
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7",
"https://plugins.dprint.dev/prettier-0.38.1.json@ae9b60b1ca7e22223cb47325b3d42c681444b46863d28ed92edc426f8a177e58"
]
}