forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdprint.json
50 lines (50 loc) · 1.21 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
48
49
50
{
"lineWidth": 120,
"useTabs": false,
"typescript": {
"semiColons": "asi",
"trailingCommas": "never",
"importDeclaration.preferSingleLine": true,
"quoteStyle": "alwaysSingle",
"nextControlFlowPosition": "maintain",
"jsxOpeningElement.bracketPosition": "maintain",
"jsx.quoteStyle": "preferDouble",
"jsxSelfClosingElement.bracketPosition": "maintain",
"jsx.bracketPosition": "maintain"
},
"json": {
},
"biome": {
"associations": [
"!**/*.(c|m)?(ts|js)x?"
],
"proseWrap": "preserve",
"singleQuote": true,
"semi": false,
"embeddedLanguageFormatting": "auto",
"trailingComma": "none",
"bracketSpacing": true,
"quoteProps": "consistent"
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
".yarn/*",
".turbo",
".astro",
".vscode",
".vscode-test-web",
".next",
".fleet",
"dist",
"packages/*/contrib",
"**/routeTree.gen.ts",
"packages/*/src/generated"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.91.8.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
"https://plugins.dprint.dev/biome-0.6.0.wasm"
]
}