33 lines
765 B
JSON
33 lines
765 B
JSON
{
|
|
"$schema": "https://dprint.dev/schemas/v0.json",
|
|
"incremental": false,
|
|
"includes": ["**/*.{ts,tsx,js,jsx,json,md}"],
|
|
"indentWidth": 2,
|
|
"lineWidth": 120,
|
|
"newLineKind": "lf",
|
|
"typescript": {
|
|
"semiColons": "asi",
|
|
"quoteStyle": "alwaysDouble",
|
|
"trailingCommas": "never",
|
|
"operatorPosition": "maintain",
|
|
"arrowFunction.useParentheses": "force"
|
|
},
|
|
"excludes": [
|
|
"LLMS.md",
|
|
"**/dist",
|
|
"**/build",
|
|
"**/docs",
|
|
"**/coverage",
|
|
"packages/**/CHANGELOG.md",
|
|
"!scratchpad/**/*",
|
|
".agents",
|
|
".context",
|
|
".specs"
|
|
],
|
|
"plugins": [
|
|
"https://plugins.dprint.dev/typescript-0.93.4.wasm",
|
|
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
|
|
"https://plugins.dprint.dev/json-0.21.1.wasm"
|
|
]
|
|
}
|