Sha256: 61331231761d8f5cc219812ff01e24d166fbedb6bc015d74b701ec704a3cede1

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 Bytes

Contents

# encoding: utf-8

require 'rubocop'

module RuboCop
  class ConfigLoader
    class << self
      def configuration_file_for(_target_dir)
        File.join(File.realpath(File.dirname(__FILE__)), 'reevoocop.yml')
      end
    end
  end
end

module ReevooCop
  def with_first_parameter
    # Style A
    foo x,
        y,
        z

    # Style B
    foo(
      x,
      y,
      z
    )
  end

  def with_fixed_indentation
    # Style B
    foo(
      x,
      y,
      z
    )

    # Style C
    foo(x,
        y,
        z
    )
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reevoocop-0.0.1 lib/reevoocop.rb