From 70d80644f834826440beecb24bb65c2afad9a08e Mon Sep 17 00:00:00 2001 From: Rodolfo Oliveira Date: Wed, 1 Mar 2017 22:04:25 +0000 Subject: [PATCH] Create .gitattributes to fix language statistics The current language statistics are taking in account the `document` folder. This shows the project as only ~43% Python... The `.gitattributes` file fixes this by excluding that folder and additionally the `Makefile` in the root folder as well. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..d31472f5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +document/* linguist-documentation +Makefile linguist-vendored=true