From 0d884f570b72c5b030f7908032946078537ea121 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 27 Nov 2024 11:15:53 +0100 Subject: [PATCH] gitattributes: Add .cpp files to whitespace checks Use the same rules as .c files. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 830313e90f3..d33e5ef0941 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ * whitespace=space-before-tab,trailing-space *.[chly] whitespace=space-before-tab,trailing-space,indent-with-non-tab,tabwidth=4 +*.cpp whitespace=space-before-tab,trailing-space,indent-with-non-tab,tabwidth=4 *.pl whitespace=space-before-tab,trailing-space,tabwidth=4 *.pm whitespace=space-before-tab,trailing-space,tabwidth=4 *.po whitespace=space-before-tab,trailing-space,tab-in-indent,-blank-at-eof -- 2.39.5