From 56d84bb5094408e23e1200dace92cc30078153c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Fri, 23 Nov 2018 12:33:48 +0100 Subject: [PATCH] Add a gitattributes file Make GitHub's language statistics treat the `*.conf` files as Nginx configuration files --- .gitattributes | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..93833f6 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +# Automatically normalize line endings for all text-based files +# https://git-scm.com/docs/gitattributes#_end_of_line_conversion + +* text=auto + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# Make GitHub's language statistics treat the `*.conf` files as +# Nginx configuration files +# +# https://github.com/github/linguist/blob/master/README.md + +*.conf linguist-language=Nginx