From 651e74d49e25f1db4a3880ac8559db959c9a1021 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Mon, 22 Jul 2019 07:50:27 +0500 Subject: [PATCH] Disable Brakeman check "UnscopedFind" --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rakefile b/Rakefile index c950b60..5102ea7 100644 --- a/Rakefile +++ b/Rakefile @@ -71,5 +71,8 @@ task :brakeman do '--confidence-level', '1', '--run-all-checks', + # Ignore UnscopedFind because we use Pundit + '--except', + 'UnscopedFind', ) end