From 854361090aead4a21b124136431db3b40c922ae1 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Wed, 23 Oct 2024 11:21:03 +0200 Subject: [PATCH] Add coverage files to .gitignore This change ensures that coverage data files are not tracked by Git. The addition helps keep the repository clean from auto-generated coverage reports. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9aec0cb..5ce8347 100644 --- a/.gitignore +++ b/.gitignore @@ -54,4 +54,8 @@ atlassian-ide-plugin.xml com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties -fabric.properties \ No newline at end of file +fabric.properties + +## Coverage data +coverage.coverprofile +coverage.html \ No newline at end of file