-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.jsonc
31 lines (31 loc) · 937 Bytes
/
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
{
"incremental": true,
"indentWidth": 2,
"lineWidth": 100,
"exec": {
"commands": [
{
"command": "sql-formatter -c sql_fmt.json -l postgresql",
"exts": ["sql"],
},
],
},
"markdown": {
"textWrap": "always",
},
// "typescript": {
// "arrowFunction.useParentheses": "force",
// "quoteProps": "asNeeded",
// "semiColons": "asi",
// },
"excludes": [".sqlx", "src/graphql/generated.rs", "target"],
"plugins": [
"https://plugins.dprint.dev/dockerfile-0.3.2.wasm",
"https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
"https://plugins.dprint.dev/toml-0.6.3.wasm",
// "https://plugins.dprint.dev/typescript-0.93.0.wasm"
],
}