forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dprint.json
34 lines (34 loc) · 871 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
33
34
{
"$schema": "https://dprint.dev/schemas/v0.json",
"incremental": true,
"includes": [
"**/*.{ts,cjs,mjs,js,json}"
],
"excludes": [
"**/node_modules",
"./dist/",
"./npm-package/",
"./plugin/ThirdParty/",
"./publish/",
"**/*-lock.json"
],
"lineWidth": 100,
"useTabs": false,
"indentWidth": 2,
"newLineKind": "crlf",
"typescript": {
"bracePosition": "maintain",
"nextControlFlowPosition": "sameLine",
"operatorPosition": "maintain",
"quoteStyle": "alwaysSingle",
"useBraces": "maintain",
"variableStatement.preferHanging": true,
"objectPattern.preferSingleLine": true,
"arrowFunction.useParentheses": "force",
"conditionalExpression.operatorPosition": "nextLine"
},
"plugins": [
"./node_modules/@dprint/typescript/plugin.wasm",
"./node_modules/@dprint/json/plugin.wasm"
]
}