From dae4743fe06ec81adb958c028c80d6ac99f0275d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Os?= Date: Sun, 11 Apr 2021 16:36:39 +0200 Subject: [PATCH] Fix .gitattributes (#10472) (#10504) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added wildcards so that the rules apply to all .java and .xml files. Signed-off-by: Daniƫl van Os --- .gitattributes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index c4b674eff71..fcf9b296f32 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ -.java text=auto -.xml text=auto +*.java text=auto +*.xml text=auto