mongo/.prettierrc
Steve McClure 32e8f260de SERVER-124136 Format markdown via prettier: wrap lines and use width of 100 (#52231)
GitOrigin-RevId: 3305c1e2ee3a6a2c3a5b2b7883b0f491a59ed646
2026-04-21 19:20:11 +00:00

28 lines
580 B
Plaintext

{
"bracketSpacing": false,
"overrides": [
{
"files": ["*.js", "*.mjs"],
"options": {
"tabWidth": 4,
"printWidth": 120,
"quoteProps": "preserve"
}
},
{
"files": "*.idl",
"options": {
"parser": "yaml",
"tabWidth": 4
}
},
{
"files": "*.md",
"options": {
"proseWrap": "always",
"printWidth": 100
}
}
]
}