forked from refined-github/refined-github
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdprint.json
More file actions
41 lines (41 loc) · 1.06 KB
/
dprint.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"$schema": "https://dprint.dev/schemas/v0.json",
"plugins": [
"./node_modules/dprint-plugin-markup/plugin.wasm",
"./node_modules/@dprint/typescript/plugin.wasm",
"./node_modules/dprint-plugin-malva/plugin.wasm",
"./node_modules/dprint-plugin-graphql/plugin.wasm",
"./node_modules/@dprint/json/plugin.wasm",
"./node_modules/dprint-plugin-yaml/plugin.wasm"
],
"includes": [
"**/*.{svelte,css,gql,yml,ts,js}",
"dprint.json"
],
"useTabs": true,
"markup": {
"whitespaceSensitivity": "strict",
"scriptIndent": true,
"styleIndent": true
},
"typescript": {
"indentWidth": 1,
"quoteStyle": "preferSingle",
"jsx.quoteStyle": "preferDouble",
"trailingCommas": "onlyMultiLine",
"semiColons": "prefer",
"lineWidth": 120,
"jsx.multiLineParens": "never",
"spaceSurroundingProperties": false,
"importDeclaration.spaceSurroundingNamedImports": false,
"exportDeclaration.spaceSurroundingNamedExports": false
},
"malva": {
"linebreakInPseudoParens": true,
"quotes": "alwaysSingle"
},
"graphql": {},
"yaml": {
"quotes": "preferSingle"
}
}