forked from Haehnchen/crypto-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdprint.json
33 lines (33 loc) · 797 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
{
"lineWidth": 256,
"indentWidth": 2,
"typescript": {
"preferSingleLine": true,
"singleBodyPosition": "sameLine",
"useBraces": "always",
"newLineKind": "auto",
"quoteStyle": "preferSingle",
"binaryExpression.operatorPosition": "sameLine"
},
"json": {
"indentWidth": 2
},
"markup": {},
"markdown": {},
"toml": {},
"includes": [
"**/*.{ts,tsx,js,jsx,cjs,mjs,json,md,toml}"
],
"excludes": [
"**/dist",
"**/node_modules",
"**/*-lock.json"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.76.0.wasm",
"https://plugins.dprint.dev/json-0.15.6.wasm",
"https://plugins.dprint.dev/markdown-0.14.1.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/dockerfile-0.3.0.wasm"
]
}