-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.dprint.jsonc
More file actions
28 lines (28 loc) · 622 Bytes
/
Copy path.dprint.jsonc
File metadata and controls
28 lines (28 loc) · 622 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
{
"json": {
"array.preferSingleLine": true,
"jsonTrailingCommaFiles": [".vscode/extensions.json", ".vscode/settings.json"],
"lineWidth": 88,
},
"markdown": {
"emphasisKind": "asterisks",
"lineWidth": 88,
"html.indentWidth": 4,
"html.selfClosingSpace": false,
},
"toml": {
"lineWidth": 88,
},
"yaml": {
"braceSpacing": false,
"formatComments": true,
"printWidth": 88,
},
"excludes": ["**/*.lock", "dist/"],
"plugins": [
"npm:dprint-plugin-yaml@0.6.0",
"npm:@dprint/json@0.23.0",
"npm:@dprint/markdown@0.24.0",
"npm:@dprint/toml@0.8.0",
],
}