-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdprint.json
46 lines (46 loc) · 963 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"incremental": true,
"lineWidth": 88,
"useTabs": false,
"typescript": {
"quoteStyle": "preferSingle",
"useTabs": false,
"indentWidth": 2
},
"json": {
"indentWidth": 2,
"useTabs": false
},
"markdown": {
"lineWidth": 80
},
"toml": {
},
"dockerfile": {
},
"includes": [
"**/*.{ts,tsx,js,jsx,cjs,mjs,json,md,toml,dockerfile}"
],
"excludes": [
"pnpm-lock.yaml",
"**/*-lock.json",
"**/.ipynb_checkpoints",
"**/.mypy_cache",
"**/.nox",
"**/.nox_*",
"**/.venv/**",
"**/.pytest_cache",
"**/__pycache__",
"**/dist",
"**/mypy_reports",
"**/node_modules",
"**/tests"
],
"plugins": [
"https://plugins.dprint.dev/dockerfile-0.3.2.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.2.wasm",
"https://plugins.dprint.dev/toml-0.6.2.wasm",
"https://plugins.dprint.dev/typescript-0.91.6.wasm"
]
}