Files
uv/.prettierrc
Zanie Blue e006a69fe8 Configure prettier prose-wrap in .prettierrc instead of the CLI (#17184)
This also removes the file-specific targets from prettier execution
which means we're including `.json`, `.css`, and `.html` files, which
seems like an improvement.

Co-authored-by: Claude <noreply@anthropic.com>
2025-12-18 18:54:23 -06:00

11 lines
119 B
Plaintext

{
"overrides": [
{
"files": ["*.md"],
"options": {
"proseWrap": "always"
}
}
]
}