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
|
{
"$schema": "https://dprint.dev/schemas/v0.json",
"projectType": "openSource",
"incremental": true,
"useTabs": true,
"typescript": {
"semiColons": "always",
"quoteStyle": "preferSingle",
"importDeclaration.spaceSurroundingNamedImports": true
},
"markdown": {
"textWrap": "always",
"emphasisKind": "asterisks",
"strongKind": "asterisks"
},
"json": { "lineWidth": 80 },
"yapf": {
"based_on_style": "pep8",
"dedent_closing_brackets": true,
"use_tabs": false,
"indent_width": 4,
"split_before_dot": false,
"continuation_align_style": "space"
},
"includes": [
"**/*.{ts,tsx}",
"**/*.{md}",
"**/*.{json}",
"**/*.{py}"
],
"excludes": [
"node_modules/**",
"**/*-lock.json",
"database/SQLiteFuzzySearch/**",
"venv/**",
".next/**"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.44.0.wasm",
"https://plugins.dprint.dev/markdown-0.6.2.wasm",
"https://plugins.dprint.dev/json-0.10.1.wasm",
"https://plugins.dprint.dev/yapf-0.2.0.exe-plugin@14c42b703709e81f813c6674a8110c522af0ea78b6298f4f73721121a1a03701"
]
}
|