From 5d9a6ac37e4324bb659a55f07d9a93db1a1cdfa3 Mon Sep 17 00:00:00 2001 From: George Drummond Date: Thu, 24 Jan 2019 09:47:54 -0500 Subject: [PATCH] Enforce tabWidth of 2 --- prettier.config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/prettier.config.json b/prettier.config.json index 5149b1b7..ad4d8955 100644 --- a/prettier.config.json +++ b/prettier.config.json @@ -1,5 +1,6 @@ { - "trailingComma": "es5", "semi": false, - "singleQuote": true + "singleQuote": true, + "tabWidth": 2, + "trailingComma": "es5" }