From adcec923c68ae25c01b81214ef2a35d78f00783c Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Thu, 19 Jan 2023 16:18:14 +0200 Subject: [PATCH] style: add "tabWidth" Prettier override for Solidity --- .prettierrc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.prettierrc.yml b/.prettierrc.yml index d45ccb0..413b963 100644 --- a/.prettierrc.yml +++ b/.prettierrc.yml @@ -2,11 +2,11 @@ bracketSpacing: true printWidth: 120 proseWrap: "always" singleQuote: false -tabWidth: 4 +tabWidth: 2 trailingComma: "all" useTabs: false overrides: - - files: ["*.json", "*.md", "*.yml"] + - files: ["*.sol"] options: - tabWidth: 2 + tabWidth: 4