-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
57 lines (57 loc) · 1.55 KB
/
dprint.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"incremental": true,
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"typescript": {
"quoteStyle": "alwaysSingle",
"newLineKind": "auto",
"useBraces": "always",
"bracePosition": "sameLine",
"singleBodyPosition": "nextLine",
"nextControlFlowPosition": "sameLine",
"trailingCommas": "never",
"arrowFunction.useParentheses": "preferNone",
"semiColons": "always",
"quoteProps": "asNeeded",
"jsx.quoteStyle": "preferSingle",
"arguments.spaceAround": false,
"arrayExpression.spaceAround": true,
"arrayPattern.spaceAround": true,
"doWhileStatement.spaceAround": false,
"forInStatement.spaceAround": false,
"forOfStatement.spaceAround": false,
"forStatement.spaceAround": false,
"ifStatement.spaceAround": false,
"parameters.spaceAround": false,
"switchStatement.spaceAround": false,
"tupleType.spaceAround": true,
"whileStatement.spaceAround": false,
"spaceSurroundingProperties": true,
"commentLine.forceSpaceAfterSlashes": true,
"jsxExpressionContainer.spaceSurroundingExpression": true
},
"json": {
"newLineKind": "auto"
},
"markdown": {
"newLineKind": "auto"
},
"includes": [
"**/*.{ts,tsx,js,jsx,json,md}"
],
"excludes": [
"**/node_modules",
"**/dist",
"**/coverage",
"**/test.ts",
"**/*-lock.json",
"**/*.d.ts",
"**/.*"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.85.0.wasm",
"https://plugins.dprint.dev/json-0.17.4.wasm",
"https://plugins.dprint.dev/markdown-0.15.3.wasm"
]
}