From 6b43cc579adad16e992bc636a5a892ebaded24e6 Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 18 Mar 2025 17:11:08 +0100 Subject: [PATCH] configure editorconfig --- .editorconfig | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 3e4eeaf..412fd6b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,17 @@ -# don't complain about using the System.Int32 versions instead of int -dotnet_diagnostic.IDE0049.severity = none +root = true -# don't complain about accessing a member through nested namespace/classes -dotnet_diagnostic.IDE0002.severity = none +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[{makefile,Makefile}] +indent_style = tab +indent_size = 1 + +[*.{yaml,json,toml}] +indent_style = space +indent_size = 2