From 5bd9478e49ca0989f37811fe7bdbfb759806274c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Pol=C3=A1=C5=A1ek?= Date: Mon, 23 Feb 2026 01:04:18 +0100 Subject: [PATCH] Configure project files (*.proj), props (*.props) and targets (*.target) formatting .editorconfig --- src/modules/cmdpal/.editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/modules/cmdpal/.editorconfig b/src/modules/cmdpal/.editorconfig index 281fbeeee7..c4f5d03f28 100644 --- a/src/modules/cmdpal/.editorconfig +++ b/src/modules/cmdpal/.editorconfig @@ -264,3 +264,15 @@ dotnet_style_prefer_simplified_interpolation = true:suggestion [*.{cs,vb}] # CS8305: Type is for evaluation purposes only and is subject to change or removal in future updates. dotnet_diagnostic.CS8305.severity = suggestion + +################################################## +# Solutions and projects +################################################## + +[*.{*proj,props,target}] +tab_width = 2 +indent_size = 2 +end_of_line = crlf +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true