-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdprint.json
79 lines (78 loc) · 2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"plugins": [
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.18.0.wasm",
"https://plugins.dprint.dev/json-0.19.2.wasm",
"https://plugins.dprint.dev/typescript-0.89.3.wasm"
],
"excludes": [
"**/node_modules",
"datamine",
"package-lock.json"
],
"markup": {
"useTabs": true
},
"json": {
"newLineKind": "lf",
"useTabs": true
},
"typescript": {
"bracePosition": "sameLine",
"lineWidth": 140,
"newLineKind": "lf",
"nextControlFlowPosition": "sameLine",
"operatorPosition": "sameLine",
"preferHanging": false,
"preferSingleLine": false,
"quoteProps": "asNeeded",
"quoteStyle": "alwaysSingle",
"semiColons": "always",
"singleBodyPosition": "nextLine",
"spaceAround": true,
"spaceSurroundingProperties": true,
"trailingCommas": "never",
"useBraces": "always",
"useTabs": true,
"arrowFunction.useParentheses": "preferNone",
"binaryExpression.linePerExpression": true,
"binaryExpression.spaceSurroundingBitwiseAndArithmeticOperator": true,
"commentLine.forceSpaceAfterSlashes": true,
"constructor.spaceBeforeParentheses": false,
"constructorType.spaceAfterNewKeyword": true,
"constructSignature.spaceAfterNewKeyword": true,
"doWhileStatement.spaceAfterWhileKeyword": true,
"enumDeclaration.memberSpacing": "newLine",
"exportDeclaration.forceMultiLine": false,
"exportDeclaration.forceSingleLine": true,
"exportDeclaration.sortNamedExports": "caseSensitive",
"exportDeclaration.spaceSurroundingNamedExports": true,
"forInStatement.spaceAfterForKeyword": true,
"forOfStatement.spaceAfterForKeyword": true,
"forStatement.spaceAfterForKeyword": true,
"forStatement.spaceAfterSemiColons": true,
"functionDeclaration.spaceBeforeParentheses": false,
"functionExpression.spaceAfterFunctionKeyword": true,
"functionExpression.spaceBeforeParentheses": true,
"getAccessor.spaceBeforeParentheses": true,
"ifStatement.spaceAfterIfKeyword": true,
"importDeclaration.forceMultiLine": false,
"importDeclaration.forceSingleLine": true,
"importDeclaration.sortNamedImports": "caseSensitive",
"importDeclaration.spaceSurroundingNamedImports": true,
"jsx.bracketPosition": "nextLine",
"jsx.forceNewLinesSurroundingContent": true,
"jsx.multiLineParens": "always",
"jsxExpressionContainer.spaceSurroundingExpression": true,
"jsxSelfClosingElement.spaceBeforeSlash": false,
"memberExpression.linePerExpression": false,
"method.spaceBeforeParentheses": false,
"module.sortExportDeclarations": "caseSensitive",
"module.sortImportDeclarations": "caseSensitive",
"setAccessor.spaceBeforeParentheses": true,
"taggedTemplate.spaceBeforeLiteral": true,
"typeAnnotation.spaceBeforeColon": false,
"typeAssertion.spaceBeforeExpression": true,
"typeLiteral.separatorKind": "semiColon",
"whileStatement.spaceAfterWhileKeyword": true
}
}