From 2dcdc61590b155290731aee6326732cfe3cf0b7e Mon Sep 17 00:00:00 2001 From: James Rowe Date: Sat, 22 Sep 2018 14:41:27 -0600 Subject: [PATCH] Meta: Add gitattributes file Github Linguist will read this file when calculating language stats for the repository. We can use this to exclude any vendored dependencies in externals and dist. Also makes all h files be considered cpp --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..ab861a3965 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +dist/languages/* linguist-vendored +dist/qt_themes/* linguist-vendored +externals/* linguist-vendored +*.h linguist-language=cpp