-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathdprint.json
51 lines (51 loc) · 1.29 KB
/
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
47
48
49
50
51
{
"incremental": false,
"useTabs": false,
"indentWidth": 4,
"lineWidth": 140,
"typescript": {
"newLineKind": "lf",
"semiColons": "prefer",
"quoteStyle": "alwaysDouble",
"arrowFunction.useParentheses": "force",
"importDeclaration.forceSingleLine": false,
"importDeclaration.sortNamedImports": "maintain",
"importDeclaration.spaceSurroundingNamedImports": false,
"exportDeclaration.spaceSurroundingNamedExports": false,
"module.sortImportDeclarations": "maintain",
"spaceSurroundingProperties": false,
"spaceAround": false
},
"prettier": {
"newLineKind": "lf",
"indentWidth": 2,
"yml.tabWidth": 2,
"yaml.tabWidth": 2,
"yml.singleQuote": true,
"yaml.singleQuote": true,
"associations": [
"**/*.{yaml,yml}"
]
},
"json": {
"indentWidth": 2,
"trailingCommas": "never"
},
"includes": [
"**/*.{ts,js,cjs,mjs,json,yaml,yml}"
],
"excludes": [
"/.git",
"/node_modules",
"/*-lock.{json,yaml,yml}",
"/app",
"/app-dev",
"/dist",
"/output"
],
"plugins": [
"https://plugins.dprint.dev/json-0.19.4.wasm",
"https://plugins.dprint.dev/prettier-0.46.1.json@e5bd083088a8dfc6e5ce2d3c9bee81489b065bd5345ef55b59f5d96627928b7a",
"https://plugins.dprint.dev/typescript-0.93.3.wasm"
]
}