From 6eff882467cbde7b4e293b4dd6abd7685fc67844 Mon Sep 17 00:00:00 2001 From: Justin Gregory Date: Fri, 3 Jul 2020 15:15:33 -0500 Subject: [PATCH] Fix false positives on Coverage*.cs files (#3454) I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored. This change fixes the incorrect use of the range operator on the Coverlet rules. --- VisualStudio.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 83ba0814..1ee53850 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -142,7 +142,9 @@ _TeamCity* !.axoCover/settings.json # Coverlet is a free, cross platform Code Coverage Tool -coverage*[.json, .xml, .info] +coverage*.json +coverage*.xml +coverage*.info # Visual Studio code coverage results *.coverage