-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.json
31 lines (31 loc) · 865 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
{
"indentWidth": 2,
"incremental": true,
"typescript": {
"arguments.trailingCommas": "never",
"arrowFunction.useParentheses": "preferNone",
"commentLine.forceSpaceAfterSlashes": false,
"jsx.quoteStyle": "preferDouble",
"quoteProps": "asNeeded",
"quoteStyle": "alwaysSingle",
"semiColons": "asi",
"useBraces": "maintain"
},
"json": {},
"markdown": {},
"includes": [
"**/*.{ts,tsx,js,jsx,cjs,mjs,json,md}"
],
"excludes": [
"node_modules/**/*",
"coverage/**/*",
"dist/**/*",
".swc/**/*",
".vscode/**/*"
],
"plugins": [
"https://unpkg.com/@stagas/dprint-plugin-typescript-binary/dprint_plugin_typescript.wasm@8114f452af5a7244132b68b7a04371467ff508c4d1b7d3cb9e3613921e333a7e",
"https://plugins.dprint.dev/json-0.15.3.wasm",
"https://plugins.dprint.dev/markdown-0.13.3.wasm"
]
}