class RuboCop::Cop::Layout::SpaceBeforeBlockBraces
7.times{}
# good
7.times {}
# bad
@example EnforcedStyleForEmptyBraces: no_space
7.times {}
# good
7.times{}
# bad
@example EnforcedStyleForEmptyBraces: space (default)
}
a.bar.to_s
foo.map{ |a|
# good
}
a.bar.to_s
foo.map { |a|
# bad
@example EnforcedStyle: no_space
}
a.bar.to_s
foo.map { |a|
# good
}
a.bar.to_s
foo.map{ |a|
# bad
@example EnforcedStyle: space (default)
brace depending on configuration.
Checks that block braces have or don’t have a space before the opening
def self.autocorrect_incompatible_with
def self.autocorrect_incompatible_with [Style::SymbolProc] end
def autocorrect(corrector, range)
def autocorrect(corrector, range) case range.source when /\s/ then corrector.remove(range) else corrector.insert_before(range, ' ') end end
def block_delimiters_style
def block_delimiters_style config.for_cop('Style/BlockDelimiters')['EnforcedStyle'] end
def check_empty(left_brace, space_plus_brace, used_style)
def check_empty(left_brace, space_plus_brace, used_style) return if style_for_empty_braces == used_style config_to_allow_offenses['EnforcedStyleForEmptyBraces'] = used_style.to_s if style_for_empty_braces == :space add_offense(left_brace, message: MISSING_MSG) do |corrector| autocorrect(corrector, left_brace) end else space = range_between(space_plus_brace.begin_pos, left_brace.begin_pos) add_offense(space, message: DETECTED_MSG) do |corrector| autocorrect(corrector, space) end end end
def check_non_empty(left_brace, space_plus_brace, used_style)
def check_non_empty(left_brace, space_plus_brace, used_style) case used_style when style then correct_style_detected when :space then space_detected(left_brace, space_plus_brace) else space_missing(left_brace) end end
def conflict_with_block_delimiters?(node)
def conflict_with_block_delimiters?(node) block_delimiters_style == 'line_count_based' && style == :no_space && node.multiline? end
def empty_braces?(loc)
def empty_braces?(loc) loc.begin.end_pos == loc.end.begin_pos end
def on_block(node)
def on_block(node) return if node.keywords? # Do not register an offense for multi-line braces when specifying # `EnforcedStyle: no_space`. It will conflict with autocorrection # by `EnforcedStyle: line_count_based` of `Style/BlockDelimiters` cop. # That means preventing autocorrection to incorrect autocorrected # code. # See: https://github.com/rubocop/rubocop/issues/7534 return if conflict_with_block_delimiters?(node) left_brace = node.loc.begin space_plus_brace = range_with_surrounding_space(left_brace) used_style = space_plus_brace.source.start_with?('{') ? :no_space : :space if empty_braces?(node.loc) check_empty(left_brace, space_plus_brace, used_style) else check_non_empty(left_brace, space_plus_brace, used_style) end end
def space_detected(left_brace, space_plus_brace)
def space_detected(left_brace, space_plus_brace) space = range_between(space_plus_brace.begin_pos, left_brace.begin_pos) add_offense(space, message: DETECTED_MSG) do |corrector| autocorrect(corrector, space) opposite_style_detected end end
def space_missing(left_brace)
def space_missing(left_brace) add_offense(left_brace, message: MISSING_MSG) do |corrector| autocorrect(corrector, left_brace) opposite_style_detected end end
def style_for_empty_braces
def style_for_empty_braces case cop_config['EnforcedStyleForEmptyBraces'] when 'space' then :space when 'no_space' then :no_space when nil then style else raise 'Unknown EnforcedStyleForEmptyBraces selected!' end end