-
Notifications
You must be signed in to change notification settings - Fork 3
/
dprint.json
68 lines (68 loc) · 2.16 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
{
"typescript": {
"lineWidth": 120,
"indentWidth": 4,
"useTabs": true,
"semiColons": "prefer",
"quoteStyle": "alwaysDouble",
"quoteProps": "preserve",
"newLineKind": "crlf",
"useBraces": "preferNone",
"bracePosition": "sameLineUnlessHanging",
"singleBodyPosition": "maintain",
"nextControlFlowPosition": "sameLine",
"trailingCommas": "onlyMultiLine",
"operatorPosition": "sameLine",
"preferHanging": false,
"preferSingleLine": false,
"arrowFunction.useParentheses": "maintain",
"binaryExpression.linePerExpression": false,
"jsx.bracketPosition": "nextLine",
"jsx.forceNewLinesSurroundingContent": false,
"jsx.multiLineParens": "prefer",
"memberExpression.linePerExpression": false,
"typeLiteral.separatorKind": "semiColon",
"enumDeclaration.memberSpacing": "maintain",
"spaceAround": false,
"spaceSurroundingProperties": true,
"commentLine.forceSpaceAfterSlashes": true,
"constructor.spaceBeforeParentheses": false,
"constructorType.spaceAfterNewKeyword": false,
"constructSignature.spaceAfterNewKeyword": false,
"exportDeclaration.spaceSurroundingNamedExports": true,
"importDeclaration.spaceSurroundingNamedImports": true,
"typeAssertion.spaceBeforeExpression": true,
"module.sortImportDeclarations": "caseInsensitive",
"module.sortExportDeclarations": "caseInsensitive",
"exportDeclaration.sortNamedExports": "caseInsensitive",
"importDeclaration.sortNamedImports": "caseInsensitive"
},
"json": {
"indentWidth": 4,
"useTabs": true,
"preferSingleLine": false,
"trailingCommas": "never"
},
"malva": {
"printWidth": 120,
"useTabs": true,
"hexCase": "upper",
"hexColorLength": "long",
"quotes": "preferDouble",
"padComments": true,
"linebreakInPseudoParens": true,
"declarationOrder": "smacss"
},
"excludes": [
"**/node_modules",
"**/*.js",
"**/*.wasm"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.91.0.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.1.wasm",
"https://plugins.dprint.dev/prettier-0.40.0.json@68c668863ec834d4be0f6f5ccaab415df75336a992aceb7eeeb14fdf096a9e9c",
"https://plugins.dprint.dev/g-plane/malva-v0.4.0.wasm"
]
}