]> source.dussan.org Git - gitignore.git/commitdiff
Fix false positives on Coverage*.cs files (#3454)
authorJustin Gregory <jgregory@atiba.com>
Fri, 3 Jul 2020 20:15:33 +0000 (15:15 -0500)
committerGitHub <noreply@github.com>
Fri, 3 Jul 2020 20:15:33 +0000 (17:15 -0300)
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

index 83ba081474bad83f2eeaa5faf0e7b976bad2d56b..1ee53850b84cd478da00264a919c8180a746056e 100644 (file)
@@ -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