From 62a2b0904d915dc4ef004159c14e5394ea589587 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sat, 4 Jan 2025 11:48:07 +0100 Subject: [PATCH] Enable `Lint/AmbiguousOperator` cop Parity with ActiveAdmin to prevent introduction of new warnings Ref: activeadmin/activeadmin#8594 --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 4d0d4dd..c4b3995 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -86,6 +86,9 @@ Layout/TrailingWhitespace: Layout/TrailingEmptyLines: Enabled: true +Lint/AmbiguousOperator: + Enabled: true + Packaging/BundlerSetupInTests: Enabled: true