From 4a10ebdf0b428ca36f8db2cd0be33f3c78157fc8 Mon Sep 17 00:00:00 2001 From: Nick Frostbutter <75431177+nickfrosty@users.noreply.github.com> Date: Wed, 8 Feb 2023 22:23:21 -0500 Subject: [PATCH] [docs] style: prettier force line length to 80 chars (#30133) --- docs/.prettierrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/.prettierrc.json b/docs/.prettierrc.json index c4664cb741..d3e25d5eb8 100644 --- a/docs/.prettierrc.json +++ b/docs/.prettierrc.json @@ -2,5 +2,7 @@ "trailingComma": "all", "tabWidth": 2, "semi": true, - "singleQuote": false + "singleQuote": false, + "proseWrap": "always", + "printWidth": 80 }