-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.dprint.jsonc
35 lines (35 loc) · 1.05 KB
/
.dprint.jsonc
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
{
"exec": {
"commands": [{
"command": "pnpm exec shfmt -i 2",
"exts": [".bash"],
}],
},
"typescript": {
"quoteProps": "asNeeded",
"quoteStyle": "preferSingle",
"semiColons": "asi",
"useBraces": "preferNone",
},
"prettier": {
"singleQuote": true,
},
"excludes": [
"coverage",
"**/dist",
"**/node_modules",
"**/*-lock.json",
// changeset cli (ci) will edit it and mess with the default formatting
"packages/artifacts/package.json",
"pnpm-lock.yaml",
],
"plugins": [
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7",
"https://plugins.dprint.dev/json-0.19.2.wasm",
"https://plugins.dprint.dev/markdown-0.17.0.wasm",
"https://plugins.dprint.dev/g-plane/malva-v0.5.1.wasm",
"https://plugins.dprint.dev/typescript-0.90.5.wasm",
// last, so will format only files other plugins can't: yaml
"https://plugins.dprint.dev/prettier-0.40.0.json@68c668863ec834d4be0f6f5ccaab415df75336a992aceb7eeeb14fdf096a9e9c",
],
}