From: Justin Gregory Date: Fri, 3 Jul 2020 20:15:33 +0000 (-0500) Subject: Fix false positives on Coverage*.cs files (#3454) X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6eff882467cbde7b4e293b4dd6abd7685fc67844;p=gitignore.git 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. --- 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