mirror of
https://github.com/uni-stack/uniwind.git
synced 2026-09-14 20:07:03 +08:00
bf79ad8ed9
* chore: use oxlint instead of eslint * style: oxlint-disable comments
27 lines
679 B
JSON
27 lines
679 B
JSON
{
|
|
"typescript": {
|
|
"lineWidth": 150,
|
|
"indentWidth": 4,
|
|
"semiColons": "asi",
|
|
"quoteStyle": "alwaysSingle",
|
|
"trailingCommas": "onlyMultiLine",
|
|
"preferSingleLine": false,
|
|
"jsx.quoteStyle": "preferDouble",
|
|
"constructorType.spaceAfterNewKeyword": true,
|
|
"constructSignature.spaceAfterNewKeyword": true
|
|
},
|
|
"json": {
|
|
"indentWidth": 4
|
|
},
|
|
"excludes": [
|
|
"**/node_modules",
|
|
"**/*-lock.json",
|
|
"dist",
|
|
"bun.lockb"
|
|
],
|
|
"plugins": [
|
|
"https://plugins.dprint.dev/typescript-0.95.15.wasm",
|
|
"https://plugins.dprint.dev/json-0.21.3.wasm"
|
|
]
|
|
}
|