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