From c53801336f35bb1e2ca2f17e5e4fbb77ac3d0fda Mon Sep 17 00:00:00 2001 From: Ethan Hampton Date: Sun, 28 Jan 2024 14:06:34 -0600 Subject: [PATCH] Prevent prettier adding trailing commas to tsconfig --- .prettierrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.prettierrc b/.prettierrc index c90e448..bc8e003 100644 --- a/.prettierrc +++ b/.prettierrc @@ -7,6 +7,12 @@ "options": { "tabWidth": 4 } + }, + { + "files": ["tsconfig.json"], + "options": { + "trailingComma": "none" + } } ] }