beachball/.prettierrc.json5

17 строки
288 B
Plaintext

{
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid",
"overrides": [
{
// format .json5 files as jsonc for VS Code support
"files": ["*.json5"],
"options": {
"parser": "json"
}
}
]
}