From 108a0fb5f5a0020edffa32a99d4c2866c1a5a664 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 12 Dec 2020 23:49:36 -0500 Subject: [PATCH] rubocop: disable Rails/HelperInstanceVariable This is undoubtedly a sketchy coding practice, but it is pretty common in the code here, and is non-trivial to fix. I'd prefer not to untangle all of it right now. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 9cee4a3072..412458c691 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -15,3 +15,6 @@ Performance: Style/FrozenStringLiteralComment: Exclude: - db/schema.rb + +Rails/HelperInstanceVariable: + Enabled: false