Skip to content

Commit

Permalink
Fix false positives on Coverage*.cs files (github#3454)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JGregoryAtiba authored and harithmanoj committed Nov 3, 2020
1 parent 0c76064 commit 92fbdce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion VisualStudio.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92fbdce

Please sign in to comment.