From d875e9850c5e8fc4bc1872790db665dc5216eeb8 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Tue, 11 Jun 2024 15:33:28 +1000 Subject: [PATCH] Update Rubocop todo list --- .rubocop_todo.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index a7c8cd1ee2..4796f3a417 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -37,12 +37,25 @@ Layout/MultilineOperationIndentation: # Offense count: 4 # This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces. -# SupportedStyles: space, no_space, compact -# SupportedStylesForEmptyBraces: space, no_space -Layout/SpaceInsideHashLiteralBraces: +Layout/EmptyLines: Exclude: - - 'tmp/stimulus_reflex_installer/working/development.rb' + - 'app/services/products_renderer.rb' + +# Offense count: 6 +# This cop supports safe autocorrection (--autocorrect). +# Configuration parameters: EnforcedStyle, IndentationWidth. +# SupportedStyles: aligned, indented, indented_relative_to_receiver +Layout/MultilineMethodCallIndentation: + Exclude: + - 'app/services/products_renderer.rb' + +# Offense count: 2 +# This cop supports safe autocorrection (--autocorrect). +# Configuration parameters: EnforcedStyle, IndentationWidth. +# SupportedStyles: aligned, indented +Layout/MultilineOperationIndentation: + Exclude: + - 'app/services/products_renderer.rb' # Offense count: 16 # Configuration parameters: AllowComments, AllowEmptyLambdas.