forked from RubixDev/dprint-plugin-stylua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
34 lines (29 loc) · 685 Bytes
/
dprint.json
File metadata and controls
34 lines (29 loc) · 685 Bytes
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
{
"lineWidth": 120,
"indentWidth": 4,
"useTabs": false,
"json": {
"indentWidth": 2,
"array.preferSingleLine": true
},
"markdown": {
"lineWidth": 80,
"textWrap": "always"
},
"toml": {
},
"exec": {
"commands": [{
"command": "rustfmt --edition 2021",
"exts": ["rs"]
}]
},
"includes": ["**/*"],
"excludes": ["**/target", "/.git"],
"plugins": [
"https://plugins.dprint.dev/json-0.15.6.wasm",
"https://plugins.dprint.dev/markdown-0.14.1.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
]
}