From b140c976f9a181fe5a39de38b8cc6ee96cb0ec85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Ch=C3=A1vez?= Date: Thu, 13 Jan 2022 15:15:27 -0600 Subject: [PATCH 1/3] ignore "coverage" folder created by Jest --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5265639286f8..ccf3f2f86eb6 100644 --- a/.gitignore +++ b/.gitignore @@ -77,4 +77,7 @@ storybook-static # GitHub GPG Keys .github/workflows/OSBotify-private-key.asc -*.asc \ No newline at end of file +*.asc + +# Jest coverage report +coverage/ \ No newline at end of file From 1c4219c7c6af7ba4c0a52eeb59642429acead9a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Ch=C3=A1vez?= Date: Tue, 18 Jan 2022 15:15:38 -0600 Subject: [PATCH 2/3] ignore also coverage.data --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ccf3f2f86eb6..0f7cf844f2a5 100644 --- a/.gitignore +++ b/.gitignore @@ -80,4 +80,5 @@ storybook-static *.asc # Jest coverage report -coverage/ \ No newline at end of file +/coverage.data +/coverage/ \ No newline at end of file From 0d75750dfc693336374e07ea586a913e3f267630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Ch=C3=A1vez?= Date: Tue, 18 Jan 2022 15:16:05 -0600 Subject: [PATCH 3/3] add new line at eof --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0f7cf844f2a5..a24971e612b9 100644 --- a/.gitignore +++ b/.gitignore @@ -81,4 +81,4 @@ storybook-static # Jest coverage report /coverage.data -/coverage/ \ No newline at end of file +/coverage/