Sha256: 2bfaceb4403fec7563cbf4acfbc0405ab4b2466b99f7e11383355184b59dbca7

Contents?: true

Size: 561 Bytes

Versions: 195

Compression:

Stored size: 561 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # This class does empty line autocorrection
    class EmptyLineCorrector
      class << self
        def correct(corrector, node)
          offense_style, range = node

          case offense_style
          when :no_empty_lines
            corrector.remove(range)
          when :empty_lines
            corrector.insert_before(range, "\n")
          end
        end

        def insert_before(corrector, node)
          corrector.insert_before(node, "\n")
        end
      end
    end
  end
end

Version data entries

195 entries across 188 versions & 19 rubygems

Version Path
study_line-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/correctors/empty_line_corrector.rb
study_line-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/correctors/empty_line_corrector.rb
rubocop-1.60.0 lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.99 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.98 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.97 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.96 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.95 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb
harbr-0.1.94 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/correctors/empty_line_corrector.rb