forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.json
47 lines (47 loc) · 1.22 KB
/
dprint.json
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
{
"lineWidth": 120,
"useTabs": false,
"typescript": {
"semiColons": "asi",
"trailingCommas": "never",
"importDeclaration.preferSingleLine": true,
"quoteStyle": "alwaysSingle",
"jsxOpeningElement.bracketPosition": "maintain",
"jsx.quoteStyle": "preferDouble",
"jsxSelfClosingElement.bracketPosition": "maintain",
"jsx.bracketPosition": "maintain"
},
"json": {
},
"prettier": {
"proseWrap": "preserve",
"singleQuote": true,
"semi": false,
"embeddedLanguageFormatting": "auto",
"trailingComma": "none",
"bracketSpacing": true,
"quoteProps": "consistent"
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
".yarn/*",
".turbo",
".vscode",
".vscode-test-web",
".next",
"docs/tsconfig.*",
"docs/out",
"docs/components/ui/",
"examples/*/dist",
"packages/*/dist",
"packages/*/contrib",
"packages/*/src/generated"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.89.1.wasm",
"https://plugins.dprint.dev/json-0.19.1.wasm",
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/prettier-0.38.1.json@ae9b60b1ca7e22223cb47325b3d42c681444b46863d28ed92edc426f8a177e58"
]
}