-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdprint.json
More file actions
34 lines (34 loc) · 921 Bytes
/
Copy pathdprint.json
File metadata and controls
34 lines (34 loc) · 921 Bytes
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
{
"$schema": "https://dprint.dev/schemas/v0.json",
"includes": ["**/*.{ts,tsx,js,jsx,json,md}"],
"indentWidth": 2,
"lineWidth": 120,
"newLineKind": "lf",
"typescript": {
"semiColons": "asi",
"quoteStyle": "alwaysDouble",
"trailingCommas": "onlyMultiLine",
"operatorPosition": "maintain",
"arrowFunction.useParentheses": "force",
"binaryExpression.linePerExpression": true,
"preferSingleLine": false,
"jsx.forceNewLinesSurroundingContent": true,
"memberExpression.linePerExpression": true,
"enumDeclaration.memberSpacing": "newLine",
"exportDeclaration.forceMultiLine": "always",
"importDeclaration.preferSingleLine": true
},
"markup": {
"maxAttrsPerLine": 1,
"component.selfClosing": true
},
"sql": {
"linesBetweenQueries": 3
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
"**/package.json",
"vscode/*.json"
]
}