From 1f3a7028e8fd5f097562420079172f25bfa57f0e Mon Sep 17 00:00:00 2001 From: Elliot Morris Date: Fri, 1 Dec 2023 16:04:33 +0000 Subject: [PATCH] [Lint] Standardize line endings. https://github.com/OpenAssetIO/OpenAssetIO/issues/1200, explicitly set git behaviour for line endings , ensuring linux style line endings. We noted in some cases our CI was configured with automatic end of line conversion, which cause some linting problems, especially on windows. Signed-off-by: Elliot Morris --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e4f58f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Force linux style line endings. +* text=auto eol=lf