From 4393910b056b890c02760f38810a101f97b0176f Mon Sep 17 00:00:00 2001 From: Simar Date: Fri, 10 May 2024 23:11:25 -0600 Subject: [PATCH] feat(checks): Add support for deprecated checks --- pkg/scanner/scanner.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/scanner/scanner.go b/pkg/scanner/scanner.go index 53c52a8..15d8216 100644 --- a/pkg/scanner/scanner.go +++ b/pkg/scanner/scanner.go @@ -51,6 +51,8 @@ type Scanner struct { regoOnly bool } +func (s *Scanner) SetIncludeDeprecatedChecks(bool) {} + func (s *Scanner) SetRegoOnly(value bool) { s.regoOnly = value }