From 182a5d25db711284630a146b82a2097d5de34f97 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 21 Jul 2022 00:13:25 -0700 Subject: [PATCH] Update EditorConfig with some explicit settings --- .editorconfig | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index c910d25d8..9acb478c3 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,6 +15,12 @@ curly_bracket_next_line = true spaces_around_operators = true spaces_around_brackets = true -[*.yml,*.yaml] +[*.{yml,yaml}] indent_style = space indent_size = 2 + +[*.{md,mdx}] +trim_trailing_whitespace = false + +[*.go] +indent_style = tab