merge method
Merges this rules with another, creating combined rules.
Implementation
IgnoreRules merge(IgnoreRules other) {
return IgnoreRules._(
[..._patterns, ...other._patterns],
{..._negations, ...other._negations},
);
}
Merges this rules with another, creating combined rules.
IgnoreRules merge(IgnoreRules other) {
return IgnoreRules._(
[..._patterns, ...other._patterns],
{..._negations, ...other._negations},
);
}