-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
28 lines (28 loc) · 769 Bytes
/
dprint.json
File metadata and controls
28 lines (28 loc) · 769 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
// u probably think im crazy! fuck you, it's not your code ❤️
{
"lineWidth": 100,
"indentWidth": 2,
"useTabs": true,
"typescript": {
"quoteProps": "asNeeded",
"bracePosition": "sameLine",
"jsx.multiLineParens": "never",
"jsxOpeningElement.bracketPosition": "sameLine",
"arrowFunction.useParentheses": "preferNone",
"jsx.bracketPosition": "sameLine",
"binaryExpression.spaceSurroundingBitwiseAndArithmeticOperator": false,
"preferSingleLine": true,
"importDeclaration.preferHanging": true,
"jsxAttributes.preferHanging": true,
"unionAndIntersectionType.preferHanging": true
},
"excludes": [
"**/*-lock.json",
"devdocs",
"vdo.ninja",
"!scripts/manage.ts"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.95.8.wasm"
]
}