From 2fcb6ac057016e97847353f0673fc16036297670 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Thu, 19 Jan 2023 16:14:42 +0200 Subject: [PATCH] style: set default "tabWidth" to 4 --- .prettierrc.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.prettierrc.yml b/.prettierrc.yml index a1ecdbb..d45ccb0 100644 --- a/.prettierrc.yml +++ b/.prettierrc.yml @@ -2,6 +2,11 @@ bracketSpacing: true printWidth: 120 proseWrap: "always" singleQuote: false -tabWidth: 2 +tabWidth: 4 trailingComma: "all" useTabs: false + +overrides: + - files: ["*.json", "*.md", "*.yml"] + options: + tabWidth: 2