-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
63 lines (63 loc) · 1.89 KB
/
dprint.json
File metadata and controls
63 lines (63 loc) · 1.89 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
58
59
60
61
62
63
{
"$schema": "https://dprint.dev/schemas/v0.json",
"lineWidth": 100,
"indentWidth": 2,
"useTabs": false,
"newLineKind": "lf",
"typescript": {
"lineWidth": 110,
"quoteStyle": "preferSingle",
"jsx.quoteStyle": "preferSingle",
"semiColons": "asi",
"trailingCommas": "onlyMultiLine",
"arrowFunction.useParentheses": "preferNone",
"preferSingleLine": true,
"operatorPosition": "sameLine",
"binaryExpression.linePerExpression": false,
"memberExpression.linePerExpression": false,
"conditionalExpression.linePerExpression": true,
"parameters.preferSingleLine": true,
"arguments.preferSingleLine": true,
"typeLiteral.separatorKind": "semiColon",
"enumDeclaration.memberSpacing": "newLine",
"importDeclaration.sortNamedImports": "caseInsensitive",
"exportDeclaration.sortNamedExports": "caseInsensitive",
"module.sortImportDeclarations": "caseInsensitive",
"module.sortExportDeclarations": "caseInsensitive"
},
"json": {},
"markdown": {},
"toml": {},
"yaml": {},
"markup": {},
"malva": {},
"exec": {
"cwd": "${configDir}",
"commands": [
{
"command": "shfmt -i {{indent_width}} -s -ci -sr",
"exts": [
"sh",
"bash"
]
}
]
},
"excludes": [
"**/*-lock.json",
"**/*-lock.yaml",
"dist",
"coverage",
"node_modules"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.95.8.wasm",
"https://plugins.dprint.dev/json-0.20.0.wasm",
"https://plugins.dprint.dev/markdown-0.19.0.wasm",
"https://plugins.dprint.dev/toml-0.6.4.wasm",
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm",
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.19.0.wasm",
"https://plugins.dprint.dev/g-plane/malva-v0.15.2.wasm",
"https://plugins.dprint.dev/exec-0.6.2.json@df98f54ffd3092b8a841aedd6d098a2651f16d0a796a40535774f1a8b4b9d463"
]
}