From 34f97a754446dc274fe1abdc14c1f4fbdd11cbe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 16 Jun 2020 16:21:39 +0200 Subject: [PATCH] GitHub linguist: Mark .rst files as detectable Linguist excludes documentation by default, which is not so useful on a repo dedicated to documentation. This attribute forces it to take .rst files into account and properly report this report as being 99% reStructuredText. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..4631c3bd3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Properly detect languages on GitHub +*.rst linguist-detectable=true