From b35689b70de2da0c28d4d6ab56e2987cddf80e77 Mon Sep 17 00:00:00 2001 From: Andreas Haferburg Date: Wed, 1 Nov 2017 15:31:32 +0100 Subject: [PATCH] Enforce "\n" line endings on Windows (#574) With Windows line endings, which seems to be the default on Windows, the zig compiler won't understand std out of the box. This project should not rely on git's global core.autocrlf setting. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..f86311554f --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.zig text eol=lf