Skip to content
Snippets Groups Projects
Verified Commit 5b618e2d authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixes #202

parent c786a252
No related branches found
No related tags found
No related merge requests found
Pipeline #482 passed
...@@ -194,12 +194,12 @@ class IgnoreListManager constructor( ...@@ -194,12 +194,12 @@ class IgnoreListManager constructor(
ignoreRule ?: "", ignoreRule ?: "",
if (isRegEx) ExpressionMatch.MatchMode.MatchRegEx if (isRegEx) ExpressionMatch.MatchMode.MatchRegEx
else ExpressionMatch.MatchMode.MatchWildcard, else ExpressionMatch.MatchMode.MatchWildcard,
true caseSensitive = false
), ),
ExpressionMatch( ExpressionMatch(
scopeRule ?: "", scopeRule ?: "",
ExpressionMatch.MatchMode.MatchMultiWildcard, ExpressionMatch.MatchMode.MatchMultiWildcard,
true caseSensitive = false
) )
) )
...@@ -223,12 +223,12 @@ class IgnoreListManager constructor( ...@@ -223,12 +223,12 @@ class IgnoreListManager constructor(
ignoreRule, ignoreRule,
if (isRegEx) ExpressionMatch.MatchMode.MatchRegEx if (isRegEx) ExpressionMatch.MatchMode.MatchRegEx
else ExpressionMatch.MatchMode.MatchWildcard, else ExpressionMatch.MatchMode.MatchWildcard,
true caseSensitive = false
), ),
scopeRegEx = ExpressionMatch( scopeRegEx = ExpressionMatch(
scopeRule, scopeRule,
ExpressionMatch.MatchMode.MatchMultiWildcard, ExpressionMatch.MatchMode.MatchMultiWildcard,
true caseSensitive = false
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment