Sha256: ef4f966ba83cbdc9b8d58eeaf7aeb180abbde56258564837d1adf15fb10b973b

Contents?: true

Size: 1.57 KB

Versions: 6902

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module RuboCop
  # Handles caching of configurations and association of inspected
  # ruby files to configurations.
  class ConfigStore
    def initialize
      # @options_config stores a config that is specified in the command line.
      # This takes precedence over configs located in any directories
      @options_config = nil

      # @path_cache maps directories to configuration paths. We search
      # for .rubocop.yml only if we haven't already found it for the
      # given directory.
      @path_cache = {}

      # @object_cache maps configuration file paths to
      # configuration objects so we only need to load them once.
      @object_cache = {}
    end

    def options_config=(options_config)
      loaded_config = ConfigLoader.load_file(options_config)
      @options_config = ConfigLoader.merge_with_default(loaded_config,
                                                        options_config)
    end

    def force_default_config!
      @options_config = ConfigLoader.default_configuration
    end

    def for(file_or_dir)
      return @options_config if @options_config

      dir = if File.directory?(file_or_dir)
              file_or_dir
            else
              File.dirname(file_or_dir)
            end
      @path_cache[dir] ||= ConfigLoader.configuration_file_for(dir)
      path = @path_cache[dir]
      @object_cache[path] ||= begin
                                print "For #{dir}: " if ConfigLoader.debug?
                                ConfigLoader.configuration_from_file(path)
                              end
    end
  end
end

Version data entries

6,902 entries across 6,877 versions & 29 rubygems

Version Path
rubocop-0.63.0 lib/rubocop/config_store.rb
rubocop-0.62.0 lib/rubocop/config_store.rb
rubocop-0.61.1 lib/rubocop/config_store.rb
rubocop-0.61.0 lib/rubocop/config_store.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/config_store.rb
config_gems_initialization_aim-0.1.4 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/config_store.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/config_gems_initialization_aim-0.1.1/vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/config_store.rb
config_gems_initialization_aim-0.1.3 vendor/bundle/ruby/2.5.0/gems/rubocop-0.60.0/lib/rubocop/config_store.rb
rubocop-0.60.0 lib/rubocop/config_store.rb
rubocop-0.59.2 lib/rubocop/config_store.rb
rubocop-0.59.1 lib/rubocop/config_store.rb
rubocop-0.59.0 lib/rubocop/config_store.rb
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/config_store.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/config_store.rb
rubocop-0.58.2 lib/rubocop/config_store.rb
rubocop-0.58.1 lib/rubocop/config_store.rb
rubocop-0.58.0 lib/rubocop/config_store.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/config_store.rb
rubocop-0.57.2 lib/rubocop/config_store.rb
rubocop-0.57.1 lib/rubocop/config_store.rb