-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dprint.jsonc
38 lines (38 loc) · 1.09 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
36
37
38
{
"indentWidth": 2,
"lineWidth": 1000,
"newLineKind": "lf",
"useTabs": false,
"dockerfile": { // See https://dprint.dev/plugins/dockerfile/
},
"json": { // See https://dprint.dev/plugins/json/
// This would be good to do in known-JSONC files, but VS Code warns on trailing commas.
"trailingCommas": "never"
},
"markdown": { // See https://dprint.dev/plugins/markdown/
},
"typescript": { // See https://dprint.dev/plugins/typescript/
"lineWidth": 180,
"newLineKind": "lf",
"quoteProps": "asNeeded",
"quoteStyle": "preferDouble",
"semiColons": "always"
},
"yaml": { // See https://dprint.dev/plugins/pretty_yaml/
"indentWidth": 2,
"quotes": "preferDouble"
},
"excludes": [
"**/.git",
"**/node_modules",
"**/*-lock.json",
"**/dist"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.93.3.wasm",
"https://plugins.dprint.dev/json-0.19.4.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm",
"https://plugins.dprint.dev/dockerfile-0.3.2.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm"
]
}