-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dprint.jsonc
41 lines (41 loc) · 1.05 KB
/
.dprint.jsonc
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
36
37
38
39
40
41
{
"indentWidth": 4,
"lineWidth": 120,
"newLineKind": "auto",
"useTabs": false,
"typescript": {
"quoteStyle": "preferDouble",
"semiColons": "always",
"arrowFunction.useParentheses": "force"
},
"json": {
"trailingCommas": "never"
},
"markdown": {
"textWrap": "always",
"lineWidth": 80
},
"prettier": {
"associations": [
"**/*.{yaml,yml}"
],
"yml.tabWidth": 2,
"yaml.tabWidth": 2,
"yml.singleQuote": true,
"yaml.singleQuote": true
},
"excludes": [
"**/node_modules",
"**/*-lock.json",
"dist/**",
"coverage/**",
".data/**",
"pnpm-lock.yaml"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.91.1.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.1.wasm",
"https://plugins.dprint.dev/prettier-0.40.0.json@68c668863ec834d4be0f6f5ccaab415df75336a992aceb7eeeb14fdf096a9e9c"
]
}