From 4db201faf461633a7481d0899c319be444c9cfdd Mon Sep 17 00:00:00 2001 From: Will Beasley Date: Tue, 2 Jun 2015 13:37:37 -0500 Subject: [PATCH] Ignore HTML, MD, & CSS when determining language of repo. --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index fce2bdc..d6a46d3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,3 +2,9 @@ data/* binary src/* text=lf R/* text=lf + +#So HTML, MD, & CSS files aren't considered as code when determining language of repo. +# https://github.com/github/linguist#using-gitattributes +*.html linguist-documentation +*.md linguist-documentation +*.css linguist-documentation