-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
68 lines (68 loc) · 2.16 KB
/
dprint.json
File metadata and controls
68 lines (68 loc) · 2.16 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
64
65
66
67
68
{
"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,
"objectExpression.spaceSurroundingProperties": true,
"objectPattern.spaceSurroundingProperties": true,
"typeLiteral.spaceSurroundingProperties": true,
"binaryExpression.spaceSurroundingBitwiseAndArithmeticOperator": true,
"exportDeclaration.spaceSurroundingNamedExports": true,
"importDeclaration.spaceSurroundingNamedImports": true,
"module.sortImportDeclarations": "caseInsensitive",
"module.sortExportDeclarations": "caseInsensitive",
"exportDeclaration.sortNamedExports": "caseInsensitive",
"importDeclaration.sortNamedImports": "caseInsensitive",
"commentLine.forceSpaceAfterSlashes": true,
"jsxExpressionContainer.spaceSurroundingExpression": true
},
"json": {
"newLineKind": "auto",
"trailingCommas": "never"
},
"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.88.2.wasm",
"https://plugins.dprint.dev/json-0.18.0.wasm",
"https://plugins.dprint.dev/markdown-0.16.2.wasm"
]
}