-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdprint.json
More file actions
35 lines (35 loc) · 897 Bytes
/
dprint.json
File metadata and controls
35 lines (35 loc) · 897 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
33
34
35
{
"includes": [
"scripts/*.js",
"src/**/*.{ts,tsx,css}",
"rollup.config.js",
],
"excludes": [
"**/node_modules",
"**/*-lock.json",
"./example"
],
"imporg": {},
"typescript": {
"indentWidth": 2,
"lineWidth": 120,
"semiColons": "always",
"quoteStyle": "preferSingle",
"jsx.quoteStyle": "preferDouble",
"quoteProps": "consistent",
"arrowFunction.useParentheses": "force",
"functionExpression.spaceBeforeParentheses": true,
"jsxOpeningElement.bracketPosition": "sameLine",
"jsxSelfClosingElement.bracketPosition": "nextLine"
},
"malva": {
"indentWidth": 2,
"printWidth": 120,
"quotes": "preferSingle",
},
"plugins": [
"https://plugins.dprint.dev/balthild/imporg-0.1.8.wasm",
"https://plugins.dprint.dev/typescript-0.95.13.wasm",
"https://plugins.dprint.dev/g-plane/malva-v0.15.2.wasm",
],
}