diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b0ab07a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +[*] +end_of_line = lf + +[*.cmd] +end_of_line = crlf diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..512a096 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# By default, convert line endings automatically. +* text=auto + +# Declare files that will always have LF line endings on checkout. +*.py text eol=lf +*.sh text eol=lf + +# Declare files that will always have CRLF line endings on checkout. +*.cmd text eol=crlf