From 045ab2891206473da78cd61dc1022477a314809f Mon Sep 17 00:00:00 2001 From: Evan Anderson Date: Thu, 28 Jan 2021 21:32:30 -0800 Subject: [PATCH] Add .gitattributes for docs (#3138) --- .gitattributes | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..5d8fd0de2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,15 @@ +# This file is documented at https://git-scm.com/docs/gitattributes. +# Linguist-specific attributes are documented at +# https://github.com/github/linguist. + +/vendor/** linguist-vendored +*.ai binary +*.pdf binary +*.png binary + +# coverage-excluded is an attribute used to explicitly exclude a path from being +# included in code coverage. If a path is marked as linguist-generated already, +# it will be implicitly excluded and there is no need to add the +# coverage-excluded attribute +/vendor/** coverage-excluded=true +/test/** coverage-excluded=true