mongo/.prettierrc

21 lines
418 B
Plaintext

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