From 9e9b76e97fab3b5b7b525db2d6cba29200549a56 Mon Sep 17 00:00:00 2001 From: Vadim Tkachenko Date: Wed, 20 Mar 2024 21:25:58 -0700 Subject: [PATCH] Corrected default tab size to conventional 8 (#309) --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 705de4f69..20a6ea60b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,7 +8,8 @@ indent_style = space insert_final_newline = true # Default 120 is hardly reasonable on today's 4K monitors max_line_length = 200 -tab_width = 4 +# Eight. Not four. This makes it compatible with UNIX tools that honored this convention since before JetBrains existed. +tab_width = 8 trim_trailing_whitespace = true ij_continuation_indent_size = 8 ij_formatter_off_tag = @formatter:off