Files
electron-universal/.prettierrc.json
2024-06-21 14:21:47 -07:00

16 lines
251 B
JSON

{
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"parser": "typescript",
"overrides": [
{
"files": ["*.json", "*.jsonc", "*.json5"],
"options": {
"parser": "json"
}
}
]
}