mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
32 lines
523 B
Plaintext
32 lines
523 B
Plaintext
{
|
|
"arrowParens": "avoid",
|
|
"printWidth": 120,
|
|
"trailingComma": "all",
|
|
"useTabs": false,
|
|
"quoteProps": "preserve",
|
|
"plugins": [
|
|
"prettier-plugin-organize-imports"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
".vscode/*.json"
|
|
],
|
|
"options": {
|
|
"parser": "jsonc",
|
|
"quoteProps": "preserve",
|
|
"singleQuote": false,
|
|
"trailingComma": "all"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"*.md"
|
|
],
|
|
"options": {
|
|
"printWidth": 80
|
|
}
|
|
}
|
|
]
|
|
}
|