26 lines
683 B
JSON
26 lines
683 B
JSON
{
|
|
"$schema": "https://dprint.dev/schemas/v0.json",
|
|
"projectType": "openSource",
|
|
"incremental": true,
|
|
"indentWidth": 2,
|
|
"typescript": {
|
|
"lineWidth": 280,
|
|
"semiColons": "asi",
|
|
"quoteStyle": "preferDouble",
|
|
"useBraces": "preferNone",
|
|
"singleBodyPosition": "nextLine",
|
|
"arrowFunction.useParentheses": "preferNone",
|
|
"commentLine.forceSpaceAfterSlashes": false,
|
|
"taggedTemplate.spaceBeforeLiteral": false,
|
|
"nextControlFlowPosition": "nextLine"
|
|
},
|
|
"includes": ["**/*.{js,mjs}"],
|
|
"excludes": [
|
|
"node_modules/**/*",
|
|
".github/scripts/quickstart/**/*"
|
|
],
|
|
"plugins": [
|
|
"https://plugins.dprint.dev/typescript-0.42.0.wasm"
|
|
]
|
|
}
|