From f86f43220020b9f705de5a6209e758f8cd0e4b52 Mon Sep 17 00:00:00 2001 From: Justin Gregory Date: Fri, 26 Jun 2020 10:34:43 -0500 Subject: [PATCH] Fix false positives on Coverage*.cs files 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 83ba081474..1ee53850b8 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