-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdprint.json
More file actions
57 lines (57 loc) · 1.41 KB
/
dprint.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
51
52
53
54
55
56
57
{
"$schema": "https://dprint.dev/schemas/v0.json",
"lineWidth": 120,
"indentWidth": 4,
"useTabs": false,
"newLineKind": "lf",
"includes": [
"**/*.{ts,tsx,js,jsx,mjs,cjs,mts,cts}",
"**/*.{json,jsonc}",
"**/*.{css,scss}",
"**/*.{md,markdown}",
"**/*.{yaml,yml}"
],
"excludes": [
"**/.git",
"**/node_modules",
"**/dist",
"**/pnpm-lock.yaml",
"index.js",
"kernel.js",
"index.css"
],
"typescript": {
"quoteStyle": "preferDouble",
"semiColons": "always",
"trailingCommas": "onlyMultiLine",
"operatorPosition": "sameLine",
"nextControlFlowPosition": "sameLine",
"spaceSurroundingProperties": false,
"importDeclaration.forceMultiLine": "whenMultiple",
"importDeclaration.spaceSurroundingNamedImports": false,
"importDeclaration.sortNamedImports": "maintain"
},
"json": {
"indentWidth": 2,
"trailingCommas": "never"
},
"markdown": {
"textWrap": "maintain",
"unorderedListKind": "asterisks"
},
"malva": {
"printWidth": 120,
"indentWidth": 2
},
"yaml": {
"printWidth": 120,
"indentWidth": 2
},
"plugins": [
"https://plugins.dprint.dev/typescript-0.96.0.wasm",
"https://plugins.dprint.dev/json-0.21.3.wasm",
"https://plugins.dprint.dev/markdown-0.21.1.wasm",
"https://plugins.dprint.dev/g-plane/malva-v0.15.3.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.6.0.wasm"
]
}