Sha256: 637ba5718f0f26318121ecdc10ce57e9942b8ea8406c68dbf272c9e9686cc9d1

Contents?: true

Size: 1.54 KB

Versions: 3

Compression:

Stored size: 1.54 KB

Contents

module RuboCop::Git
# ref. https://github.com/thoughtbot/hound/blob/d2f3933/app/models/style_guide.rb
class StyleGuide
  def initialize(rubocop_options, config_file, override_config_content = nil)
    @rubocop_options = rubocop_options
    @config_file = config_file
    @override_config_content = override_config_content
  end

  def violations(file)
    if ignored_file?(file)
      []
    else
      parsed_source = parse_source(file)
      cops = RuboCop::Cop::Cop.all
      team = RuboCop::Cop::Team.new(cops, config, rubocop_options)
      team.inspect_file(parsed_source)
    end
  end

  private

  def ignored_file?(file)
    !file.ruby? || file.removed? || excluded_file?(file)
  end

  def excluded_file?(file)
    config.file_to_exclude?(file.filename)
  end

  def parse_source(file)
    RuboCop::ProcessedSource.new(file.content)
  end

  def config
    if @config.nil?
      config = RuboCop::ConfigLoader.configuration_from_file(@config_file)
      combined_config = RuboCop::ConfigLoader.merge(config, override_config)
      @config = RuboCop::Config.new(combined_config, "")
    end

    @config
  end

  def rubocop_options
    if config["ShowCopNames"]
      { debug: true }
    else
      {}
    end.merge(@rubocop_options)
  end

  def override_config
    if @override_config_content
      config_content = YAML.load(@override_config_content)
      override_config = RuboCop::Config.new(config_content, "")
      override_config.add_missing_namespaces
      override_config.make_excludes_absolute
      override_config
    else
      {}
    end
  end
end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-git-0.0.5 lib/rubocop/git/style_guide.rb
rubocop-git-0.0.4 lib/rubocop/git/style_guide.rb
rubocop-git-0.0.3 lib/rubocop/git/style_guide.rb