commit 35d80b91d87b507c724917cf821ced5fa561d56f Author: JackbyDev Date: Wed Aug 21 14:08:52 2024 -0400 Initial commit 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