From c101c34d2e0c0c308e0b4416231587b39e44dfd8 Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Mon, 19 Aug 2019 13:16:07 +0200 Subject: [PATCH] .gitattributes, .gitignore and .editorconfig added --- .editorconfig | 8 ++++++++ .gitattributes | 21 +++++++++++++++++++++ .gitignore | 11 +++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..444b3bcd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = latin1 +indent_style = tab +indent_size = 4 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..699751bb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,21 @@ +# always use LF line endings + +# ALL FILES: +# Normalize line endings to LF on checkin and +# prevent conversion to CRLF when the file is checked out. + +* text eol=lf + + +# TEXT FILES: + +*.bat text eol=crlf + + +# BINARY FILES: +# Disable line ending normalize on checkin. + +*.gif binary +*.jar binary +*.png binary +*.zip binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..88ec30e7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +/bin/ +/build/ +/.gradle/ +.classpath +.project +.settings/ +.idea/ +/out/ +*.iml +*.ipr +*.iws