We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88fbcb2 commit 669aca1Copy full SHA for 669aca1
internal/scanners/azqr.go
@@ -215,6 +215,10 @@ func (e *RecommendationEngine) EvaluateRecommendations(rules map[string]AzqrReco
215
results := map[string]AzqrResult{}
216
217
for k, rule := range rules {
218
+ if scanContext.Filters.Azqr.IsRecommendationExcluded(rule.RecommendationID) {
219
+ continue
220
+ }
221
+
222
results[k] = e.evaluateRecommendation(rule, target, scanContext)
223
}
224
0 commit comments