From a717ac6d85c4992d19725139ddda3f699bf41b4e Mon Sep 17 00:00:00 2001 From: Greg Price Date: Thu, 1 Feb 2018 13:37:19 -0800 Subject: [PATCH] gitattributes: Mark yarn.lock as "binary", i.e. suppress diffs. This makes many diffs that touch our JS dependencies in package.json much, much more readable by suppressing multi-thousand-line changes. With that kind of change routine, it's clear this isn't a file people are closely reviewing the text diffs in anyway. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 33effa09d8..f6cfa7f52b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -10,3 +10,4 @@ *.png binary *.otf binary *.tif binary +yarn.lock binary