generated from mintthemoon/repo-template-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.json
28 lines (28 loc) · 964 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
{
"lineWidth": 110,
"indentWidth": 2,
"typescript": {
"semiColons": "asi",
"quoteStyle": "preferDouble",
"quoteProps": "asNeeded",
"conditionalExpression.operatorPosition": "sameLine",
"preferSingleLine": true
},
"json": { "preferSingleLine": true },
"markdown": {},
"toml": {},
"yaml": {},
"exec": {
"cwd": "${configDir}",
"commands": [{ "command": "rustup run nightly-2024-08-09 rustfmt", "exts": ["rs"] }]
},
"excludes": ["**/node_modules", "**/*-lock.json", "**/*-lock.yaml", "**/package.json"],
"plugins": [
"https://plugins.dprint.dev/typescript-0.91.6.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.2.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.4.0.wasm",
"https://plugins.dprint.dev/toml-0.6.2.wasm",
"https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0"
]
}