From e366d47640f195a2c83483fb35b37a2385954d44 Mon Sep 17 00:00:00 2001 From: Orta Date: Tue, 24 Sep 2019 14:14:10 -0400 Subject: [PATCH] Ensures that prettier has the same settings as editorconfig (#38569) --- .prettierrc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.prettierrc.json b/.prettierrc.json index 30f991427a..159dda55f4 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,6 +1,7 @@ { "$schema": "http://json.schemastore.org/prettierrc", "singleQuote": true, - "trailingComma": "all" + "trailingComma": "all", + "tabWidth": 4, + "printWidth": 120 } -