forked from skybet/feedme-tech-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.json
43 lines (38 loc) · 1.13 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
{
"lineWidth": 120,
"indentWidth": 4,
"typescript": {
"semiColons": "always",
"useBraces": "always",
"bracePosition": "sameLine",
"singleBodyPosition": "nextLine",
"preferHanging": true,
"arrowFunction.useParentheses": "force",
"binaryExpression.linePerExpression": true,
"memberExpression.linePerExpression": true,
"typeLiteral.separatorKind": "comma",
"constructorType.spaceAfterNewKeyword": true,
"constructSignature.spaceAfterNewKeyword": true,
"jsxExpressionContainer.spaceSurroundingExpression": true,
"taggedTemplate.spaceBeforeLiteral": false
},
"css": {
"useTabs": true,
"indentWidth": 4,
"lineWidth": 80
},
"includes": [
"**/*.{ts,tsx,json,css}"
],
"excludes": [
"**/target",
"**/dist",
"**/node_modules",
"**/*-lock.json"
],
"plugins": [
"https://plugins.dprint.dev/json-0.15.6.wasm",
"https://plugins.dprint.dev/typescript-0.74.0.wasm",
"https://plugins.dprint.dev/disrupted/css-0.2.2.wasm"
]
}