From ebd6ccd0047295b4dcf413c4057ef6687b6d02aa Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 22 Oct 2020 08:58:59 -0700 Subject: [PATCH] build: add husky ignored files to .gitignore (#39388) Ahead of upgrading to husky v5, adding the shell file location to .gitignore to prevent it from randomly showing up when devs checkout older branches. Beginning in v5, husky places its shell files in a directory at `.husky/_` so these are placed in the .gitignore to prevent being commited or tracked. PR Close #39388 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 333dd7813c..87f88c1c59 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,6 @@ baseline.json # CLDR data tools/gulp-tasks/cldr/cldr-data/ + +# Husky +.husky/_