From 1ed6ba0ba0d3756312085ec21c90469985b5bbb6 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Fri, 16 Feb 2024 15:44:56 +0100 Subject: [PATCH] Copy over editorconfig and set line ending to LF (#1494) --- .editorconfig | 9 +++++++++ .gitattributes | 1 + 2 files changed, 10 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..fd83967fe0c0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +trim_trailing_whitespace = true +end_of_line = lf +indent_style = space +insert_final_newline = true +indent_size = 2 \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000000..6313b56c5784 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf