Skip to content

Commit 6eff882

Browse files
Fix false positives on Coverage*.cs files (github#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.
1 parent 620d487 commit 6eff882

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

VisualStudio.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ _TeamCity*
142142
!.axoCover/settings.json
143143

144144
# Coverlet is a free, cross platform Code Coverage Tool
145-
coverage*[.json, .xml, .info]
145+
coverage*.json
146+
coverage*.xml
147+
coverage*.info
146148

147149
# Visual Studio code coverage results
148150
*.coverage

0 commit comments

Comments
 (0)