-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathdprint.json
More file actions
98 lines (98 loc) · 2.12 KB
/
dprint.json
File metadata and controls
98 lines (98 loc) · 2.12 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"markdown": {
"associations": [
"**/*.jinja",
"crates/db-user/assets/**/*.md"
]
},
"markup": {
"associations": [
"!**/*.html",
"!**/*.jinja",
"**/*.wxs",
"**/*.wxl"
]
},
"excludes": [
".venv",
".drizzle",
"**/*-lock.yaml",
"**/*-lock.json",
"**/locales",
"**/*.gen.*",
"**/dist",
"**/target",
"**/public",
"**/gen/**",
"**/generated/**",
"**/permissions/**",
"**/migrations/**/*.sql",
"**/tests/*.sql",
"**/charts/**",
"**/schema.json",
"**/netlify/edge-functions"
],
"exec": {
"cwd": "${configDir}",
"commands": [
{
"command": "gofmt",
"exts": [
"go"
],
"cacheKeyFiles": [
"go.mod",
"go.sum"
]
},
{
"command": "rustfmt --edition 2024",
"exts": [
"rs"
],
"cacheKeyFiles": [
"rust-toolchain.toml"
]
},
{
"command": "swift format",
"exts": [
"swift"
]
},
{
"command": "pnpm exec oxfmt --stdin-filepath {{file_path}}",
"exts": [
"js",
"ts",
"jsx",
"tsx",
"mjs",
"mts"
],
"cacheKeyFiles": [
".oxfmtrc.json",
"package.json"
]
},
{
"command": "node apps/web/scripts/format-mdx.js",
"exts": [
"mdx"
]
}
]
},
"plugins": [
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm",
"https://plugins.dprint.dev/toml-0.6.4.wasm",
"https://plugins.dprint.dev/sql-0.2.0.wasm",
"https://plugins.dprint.dev/dockerfile-0.3.2.wasm",
"https://plugins.dprint.dev/exec-0.6.0.json@a054130d458f124f9b5c91484833828950723a5af3f8ff2bd1523bd47b83b364",
"https://plugins.dprint.dev/ruff-0.3.9.wasm",
"https://plugins.dprint.dev/json-0.20.0.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.18.0.wasm",
"https://plugins.dprint.dev/g-plane/malva-v0.12.1.wasm"
]
}