-
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy path.dprint.json
More file actions
24 lines (24 loc) · 636 Bytes
/
.dprint.json
File metadata and controls
24 lines (24 loc) · 636 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
{
"typescript": {
"semiColons": "asi",
"quoteStyle": "alwaysSingle",
"trailingCommas": "never",
"arrowFunction.useParentheses": "force",
"method.spaceBeforeParentheses": true,
"setAccessor.spaceBeforeParentheses": true,
"constructor.spaceBeforeParentheses": true,
"getAccessor.spaceBeforeParentheses": true,
"functionDeclaration.spaceBeforeParentheses": true,
"newLineKind": "lf"
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
"translations/*.json",
"dist",
"mockServiceWorker.js"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.88.7.wasm"
]
}