You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce the ability to set the severity threshold to the `Critical`
level using the `Threshold` method:
```csharp
scan.Threshold(Severity.Critical);
```
With this implementation, the scan will continue despite the presence of
issues with a severity lower than `Critical`, and will only stop for
issues of `Critical` severity.
closes#149
Description
Add a
Critical
level to the Severity enum and adjust threshold-related calculations accordingly with Critical as the highest level.Example
Expected Outcome
The scan should continue even if issues with a severity lower than
Critical
are found and should only stop for issues withCritical
severity.The text was updated successfully, but these errors were encountered: