-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdprint.json
More file actions
32 lines (32 loc) · 836 Bytes
/
dprint.json
File metadata and controls
32 lines (32 loc) · 836 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
{
"indentWidth": 2,
"typescript": {
"lineWidth": 160
},
"exec": {
"cwd": "${configDir}",
"commands": [{
"command": "rustfmt --edition 2021 --config imports_granularity=item",
"exts": ["rs"]
}]
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
"./swc_ecma_ast",
"./swc_ecma_parser",
"./swc_ecma_ast.json",
"./swc_ecma_parser.json",
"**/*.generated.ts",
"**/*generated.rs",
"**/testdata",
"**/target"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.93.4.wasm",
"https://plugins.dprint.dev/json-0.19.4.wasm",
"https://plugins.dprint.dev/toml-0.6.4.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
"https://plugins.dprint.dev/exec-0.5.1.json@492414e39dea4dccc07b4af796d2f4efdb89e84bae2bd4e1e924c0cc050855bf"
]
}