From afb5191c35da2dc6463edf8049a54a8b32f88530 Mon Sep 17 00:00:00 2001 From: Hanz Date: Tue, 12 Aug 2025 16:49:51 -0500 Subject: [PATCH] editorconfig/gitconfig/gitignore --- .editorconfig | 16 ++++++++++++++++ .gitconfig | 1 + .gitignore | 4 ++++ 3 files changed, 21 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..030cdb8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = crlf +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +[*.csproj] +indent_size = 2 +indent_style = space + +[*.props] +indent_size = 2 +indent_style = space diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..c541767 --- /dev/null +++ b/.gitconfig @@ -0,0 +1 @@ +*.{cs,csproj,sln} text=auto eol=crlf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db11af8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.user +.idea +bin +obj