Sha256: f81a7ee2edc9f11e956cefca509a83fbe4ea9dae14c150a93fcd96d3cf8c2f89
Contents?: true
Size: 759 Bytes
Versions: 6790
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # This auto-corrects parentheses class ParenthesesCorrector class << self def correct(node) lambda do |corrector| corrector.remove(node.loc.begin) corrector.remove(node.loc.end) if ternary_condition?(node) && next_char_is_question_mark?(node) corrector.insert_after(node.loc.end, ' ') end end end private def ternary_condition?(node) node.parent && node.parent.if_type? && node.parent.ternary? end def next_char_is_question_mark?(node) node.loc.last_column == node.parent.loc.question.column end end end end end
Version data entries
6,790 entries across 6,784 versions & 25 rubygems