From 971ab7f49836dc21b8f7d6fbed4320e37d503697 Mon Sep 17 00:00:00 2001 From: Martin Wickham Date: Thu, 11 Feb 2021 22:04:36 -0600 Subject: Use a zig build script to run ziglings --- .gitattributes | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitattributes (limited to '.gitattributes') diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2ab768e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +# See https://git-scm.com/docs/gitattributes +# See https://help.github.com/articles/dealing-with-line-endings/ + +# Default behavior, if core.autocrlf is unset. +* text=auto + +# Files to be converted to native line endings on checkout. +*.cpp text +*.h text + +# Text files to always have CRLF (dos) line endings on checkout. +*.bat text eol=crlf + +# Text files to always have LF (unix) line endings on checkout. +*.sh text eol=lf +*.zig text eol=lf + -- cgit v1.2.3-ZIG