From ffeddaaee38587a5816bc0e6d1df4fe5e9085443 Mon Sep 17 00:00:00 2001 From: bcoles Date: Sun, 18 May 2025 17:02:35 +1000 Subject: [PATCH] Rubocop: Disable Layout/LineContinuationLeadingSpace --- .rubocop.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index ca58a6fce339d..17cd97673e55e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -158,6 +158,12 @@ Style/RedundantAssignment: Style/SwapValues: Enabled: false +Layout/LineContinuationLeadingSpace: + Description: >- + Disabled as it sometimes improves the readability of code having leading spaces + for indented code strings. + Enabled: false + Layout/ModuleHashOnNewLine: Enabled: true