From d971dce479c45b891768416bad91681404710d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Andreassa?= Date: Thu, 24 Oct 2024 16:34:54 -0700 Subject: [PATCH] feat: Disable SafeNavigationConsistency lint --- google-style.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/google-style.yml b/google-style.yml index 485f6b1..297125f 100644 --- a/google-style.yml +++ b/google-style.yml @@ -172,6 +172,10 @@ Lint/RequireRangeParentheses: Lint/RequireRelativeSelfPath: Enabled: true +# Could be problematic for code refactoring, and overall not very useful. +Lint/SafeNavigationConsistency: + Enabled: false + # Added in Rubocop 1.9 Lint/SymbolConversion: Enabled: true