-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathdprint.json
More file actions
31 lines (31 loc) · 1002 Bytes
/
dprint.json
File metadata and controls
31 lines (31 loc) · 1002 Bytes
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
{
"indentWidth": 4,
"lineWidth": 120,
"newLineKind": "lf",
"useTabs": false,
"typescript": {
"arrowFunction.useParentheses": "preferNone",
"bracePosition": "nextLine",
"module.sortImportDeclarations": "maintain",
"importDeclaration.sortNamedImports": "maintain",
"module.sortExportDeclarations": "maintain",
"exportDeclaration.sortNamedExports": "maintain",
"nextControlFlowPosition": "nextLine",
"quoteStyle": "preferDouble",
"semiColons": "always",
"singleBodyPosition": "nextLine",
"trailingCommas": "never"
},
"json": {
"trailingCommas": "never"
},
"excludes": [
"**/node_modules"
],
"plugins": [
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.26.0.wasm",
"https://plugins.dprint.dev/json-0.21.1.wasm",
"https://plugins.dprint.dev/markdown-0.21.1.wasm",
"https://plugins.dprint.dev/typescript-0.95.15.wasm"
]
}