.gitattributes, .gitignore and .editorconfig added

This commit is contained in:
Karl Tauber
2019-08-19 13:16:07 +02:00
parent 2e4a056db1
commit c101c34d2e
3 changed files with 40 additions and 0 deletions

8
.editorconfig Normal file
View File

@@ -0,0 +1,8 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = latin1
indent_style = tab
indent_size = 4

21
.gitattributes vendored Normal file
View File

@@ -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

11
.gitignore vendored Normal file
View File

@@ -0,0 +1,11 @@
/bin/
/build/
/.gradle/
.classpath
.project
.settings/
.idea/
/out/
*.iml
*.ipr
*.iws