From ff3ebecf7349ff727489216a22fc2a74c1461b94 Mon Sep 17 00:00:00 2001 From: Phil Gilmore Date: Fri, 25 Oct 2024 03:54:25 -0600 Subject: [PATCH] Added VB and PAS blocks to .editorconfig. --- .editorconfig | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 7458995..28764cf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,10 +1,18 @@ root=true +[{*, *.*}] +resharper_tabs_are_disallowed_highlighting=none + [*.cs] tab_width = 4 indent_size = 4 indent_style = tab +[{*.vb, *.bas}] +tab_width = 4 +indent_size = 4 +indent_style = tab + [*.xml] tab_width = 4 indent_size = 4 @@ -18,4 +26,9 @@ indent_style = tab [{*.yml, *.yaml}] tab_width = 2 indent_size = 2 -indent_style = space \ No newline at end of file +indent_style = space + +[*.pas] +tab_width = 2 +indent_size = 2 +indent_style = space