forked from ghuntley/loom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
69 lines (69 loc) · 1.43 KB
/
Copy pathdprint.json
File metadata and controls
69 lines (69 loc) · 1.43 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
{
"$schema": "https://dprint.dev/schemas/v0.json",
"projectType": "openSource",
"incremental": true,
"includes": [
"**/*.{ts,js,tsx,jsx,mts,cts,json,jsonc,md,toml,yml,yaml,css}",
"**/*.nix",
"**/*.rs",
"web/**/*.{ts,js,tsx,jsx,svelte,css,html,json,md}",
"api/**/*.rs",
"infra/**/*.nix"
],
"excludes": [
"**/node_modules/**",
"**/target/**",
"**/.svelte-kit/**",
"**/build/**",
"**/dist/**",
"**/.next/**",
"pnpm-lock.yaml",
"Cargo.lock",
"flake.lock",
"devenv.lock",
"**/*.tf",
"**/*.tfvars"
],
"plugins": [
"https://plugins.dprint.dev/biome-0.11.7.wasm",
"https://plugins.dprint.dev/json-0.21.0.wasm",
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
"https://plugins.dprint.dev/toml-0.7.0.wasm",
"https://plugins.dprint.dev/dockerfile-0.3.3.wasm",
"https://plugins.dprint.dev/exec-0.6.0.json@a054130d458f124f9b5c91484833828950723a5af3f8ff2bd1523bd47b83b364"
],
"exec": {
"cwd": "${configDir}",
"commands": [
{
"command": "rustfmt --edition 2024",
"exts": ["rs"]
}
]
},
"biome": {
"indentStyle": "tab",
"indentWidth": 2,
"lineWidth": 100,
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"semicolons": "always",
"trailingCommas": "es5"
},
"json": {
"useTabs": true,
"indentWidth": 2
},
"markdown": {
"lineWidth": 100,
"textWrap": "always"
},
"toml": {
"useTabs": true,
"indentWidth": 2
},
"dockerfile": {
"useTabs": true,
"indentWidth": 2
}
}