From 7293564a02977240c4738181d76a09d75f9f1b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Sun, 4 Feb 2024 13:36:12 +0100 Subject: [PATCH] chore(prettier): don't put trailing commas in devcontainer.json (#1107) --- .prettierrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.prettierrc b/.prettierrc index 9065e5d29d..eff49de599 100644 --- a/.prettierrc +++ b/.prettierrc @@ -25,6 +25,12 @@ "options": { "printWidth": 200 } + }, + { + "files": ["devcontainer.json"], + "options": { + "trailingComma": "none" + } } ] }