From 900de1300ee2c90519d9e08c90c3e5d3c1a71ad9 Mon Sep 17 00:00:00 2001 From: JackbyDev Date: Wed, 11 Sep 2024 13:14:14 -0400 Subject: [PATCH] Initial commit --- .editorconfig | 16 ++++++++++++++++ .gitattributes | 8 ++++++++ .gitignore | 0 3 files changed, 24 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0090cf8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = true # Use trailing backslash for newlines + +[*.{bat, cmd, ps1}] +charset = latin1 +end_of_line = crlf + +[*.{sh, bash}] +end_of_line = lf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ecdaaa8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,8 @@ +* text=auto + +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf + +*.sh text eol=lf +*.bash text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29