Skip to content

Commit bfbbeb0

Browse files
authored
Avoid markdown formatting of * and \ in regexes
The `*`s were turning into italicised text, and the `\`s were disappearing, which is misleading and seemingly contradicted the "must match the entire string" description.
1 parent 0ae7baa commit bfbbeb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ You can exclude whole classes or packages by name. Pass a semicolon separated
209209
list of regexes to the 'excludedPackages' option.
210210

211211
For example:
212-
-P:scoverage:excludedPackages:.*\.utils\..*;.*\.SomeClass;org\.apache\..*
212+
213+
-P:scoverage:excludedPackages:.*\.utils\..*;.*\.SomeClass;org\.apache\..*
213214

214215
The regular expressions are matched against the fully qualified class name, and must match the entire string to take effect.
215216

0 commit comments

Comments
 (0)