docs/.prettierrc

17 lines
240 B
Text
Raw Normal View History

2023-08-16 15:34:40 +00:00
{
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": ["*.json", "*.md", "*.toml", "*.yml"],
"options": {
"useTabs": false
}
}
]
}