From 13feeb062640b9c794e40b19ff6eebf4adc998da Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Thu, 9 Jan 2025 09:24:10 +0100 Subject: [PATCH] chore(prettier): add override for json tabwitdth use the same value as in the existing .editorconfig --- .prettierrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index da3a4a8e2..32a583663 100644 --- a/.prettierrc +++ b/.prettierrc @@ -10,5 +10,13 @@ "arrowParens": "always", "proseWrap": "preserve", "htmlWhitespaceSensitivity": "css", - "endOfLine": "lf" + "endOfLine": "lf", + "overrides": [ + { + "files": ["*.json"], + "options": { + "tabWidth": 2 + } + } + ] }