forked from emweb/wt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dprint.json
More file actions
32 lines (32 loc) · 797 Bytes
/
.dprint.json
File metadata and controls
32 lines (32 loc) · 797 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
{
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"typescript": {
"quoteStyle": "preferDouble",
"semiColons": "always",
"useBraces": "always",
"bracePosition": "sameLine",
"singleBodyPosition": "nextLine",
"arrowFunction.useParentheses": "force",
"operatorPosition": "sameLine",
"trailingCommas": "onlyMultiLine",
"arguments.trailingCommas": "never",
"parameters.trailingCommas": "never"
},
"includes": [
"src/js/*.{js}",
"src/web/skeleton/*.{js}",
"src/themes/bootstrap/5/*.{js}",
"examples/custom-bs-theme/theme/*.{js}",
"examples/widgetgallery/style/*.{js}"
],
"excludes": [
"**/node_modules",
"*.min.js",
"jquery.js"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.74.0.wasm"
]
}