From 39b76ab30556c6194dcc19f0a546f811898f0c0b Mon Sep 17 00:00:00 2001 From: NickSdot Date: Sat, 5 Sep 2026 22:28:06 +0800 Subject: [PATCH] chore: added unified .editorconfig and .gitattributes --- .editorconfig | 12 ++++++++++++ .gitattributes | 1 + 2 files changed, 13 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..5ab5087b08 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at https://editorconfig.org + +root = true + +[*.xml] +charset = utf-8 +indent_size = 1 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = false diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..6313b56c57 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf