-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdprint.json
32 lines (32 loc) · 848 Bytes
/
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
{
"incremental": true,
"typescript": {
"quoteStyle": "preferSingle",
"semiColons": "asi",
"useBraces": "always",
"operatorPosition": "sameLine",
"preferSingleLine": true,
"arrowFunction.useParentheses": "force",
"binaryExpression.linePerExpression": true,
"memberExpression.linePerExpression": true,
"exportDeclaration.forceSingleLine": true,
"importDeclaration.forceSingleLine": true
},
"json": {
},
"markdown": {
},
"toml": {
},
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs,json,md,toml}"],
"excludes": [
"**/node_modules",
"**/*-lock.json"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.76.0.wasm",
"https://plugins.dprint.dev/json-0.15.6.wasm",
"https://plugins.dprint.dev/markdown-0.14.1.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm"
]
}