Class: RuboCop::ConfigLoader
- Inherits:
-
Object
- Object
- RuboCop::ConfigLoader
- Extended by:
- ConfigLoaderResolver
- Defined in:
- lib/rubocop/config_loader.rb
Overview
This class represents the configuration of the RuboCop application and all its cops. A Config is associated with a YAML configuration file from which it was read. Several different Configs can be used during a run of the rubocop program, if files in several directories are inspected.
Constant Summary collapse
- DOTFILE =
'.rubocop.yml'.freeze
- RUBOCOP_HOME =
File.realpath(File.join(File.dirname(__FILE__), '..', '..'))
- DEFAULT_FILE =
File.join(RUBOCOP_HOME, 'config', 'default.yml')
- AUTO_GENERATED_FILE =
'.rubocop_todo.yml'.freeze
Class Attribute Summary collapse
-
.auto_gen_config ⇒ Object
(also: auto_gen_config?)
Returns the value of attribute auto_gen_config.
-
.debug ⇒ Object
(also: debug?)
Returns the value of attribute debug.
- .default_configuration ⇒ Object
-
.root_level ⇒ Object
writeonly
The upwards search is stopped at this level.
Class Method Summary collapse
-
.add_missing_namespaces(path, hash) ⇒ Object
rubocop:disable Performance/HashEachMethods.
- .base_configs(path, inherit_from) ⇒ Object
- .clear_options ⇒ Object
-
.configuration_file_for(target_dir) ⇒ Object
Returns the path of .rubocop.yml searching upwards in the directory structure starting at the given directory where the inspected file is.
- .configuration_from_file(config_file) ⇒ Object
- .create_config(hash, path) ⇒ Object
- .load_file(path) ⇒ Object
-
.merge(base_hash, derived_hash) ⇒ Object
Return a recursive merge of two hashes.
-
.merge_with_default(config, config_file) ⇒ Object
Merges the given configuration with the default one.
- .target_ruby_version_to_f!(hash) ⇒ Object
Methods included from ConfigLoaderResolver
resolve_inheritance, resolve_inheritance_from_gems, resolve_requires
Class Attribute Details
.auto_gen_config ⇒ Object Also known as: auto_gen_config?
Returns the value of attribute auto_gen_config.
21 22 23 |
# File 'lib/rubocop/config_loader.rb', line 21 def auto_gen_config @auto_gen_config end |
.debug ⇒ Object Also known as: debug?
Returns the value of attribute debug.
21 22 23 |
# File 'lib/rubocop/config_loader.rb', line 21 def debug @debug end |
.default_configuration ⇒ Object
126 127 128 129 130 131 |
# File 'lib/rubocop/config_loader.rb', line 126 def default_configuration @default_configuration ||= begin print 'Default ' if debug? load_file(DEFAULT_FILE) end end |
.root_level=(value) ⇒ Object (writeonly)
The upwards search is stopped at this level.
22 23 24 |
# File 'lib/rubocop/config_loader.rb', line 22 def root_level=(value) @root_level = value end |
Class Method Details
.add_missing_namespaces(path, hash) ⇒ Object
rubocop:disable Performance/HashEachMethods
63 64 65 66 67 68 69 70 |
# File 'lib/rubocop/config_loader.rb', line 63 def add_missing_namespaces(path, hash) hash.keys.each do |key| q = Cop::Cop.qualified_cop_name(key, path) next if q == key hash[q] = hash.delete(key) end end |
.base_configs(path, inherit_from) ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/rubocop/config_loader.rb', line 86 def base_configs(path, inherit_from) configs = Array(inherit_from).compact.map do |f| if f =~ /\A#{URI::DEFAULT_PARSER.make_regexp(%w[http https])}\z/ f = RemoteConfig.new(f, File.dirname(path)).file else f = File.(f, File.dirname(path)) if auto_gen_config? next if f.include?(AUTO_GENERATED_FILE) end print 'Inheriting ' if debug? end load_file(f) end configs.compact end |
.clear_options ⇒ Object
28 29 30 |
# File 'lib/rubocop/config_loader.rb', line 28 def @debug = @auto_gen_config = @root_level = nil end |
.configuration_file_for(target_dir) ⇒ Object
Returns the path of .rubocop.yml searching upwards in the directory structure starting at the given directory where the inspected file is. If no .rubocop.yml is found there, the user’s home directory is checked. If there’s no .rubocop.yml there either, the path to the default file is returned.
110 111 112 |
# File 'lib/rubocop/config_loader.rb', line 110 def configuration_file_for(target_dir) config_files_in_path(target_dir).first || DEFAULT_FILE end |
.configuration_from_file(config_file) ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/rubocop/config_loader.rb', line 114 def configuration_from_file(config_file) config = load_file(config_file) return config if config_file == DEFAULT_FILE found_files = config_files_in_path(config_file) if found_files.any? && found_files.last != config_file print 'AllCops/Exclude ' if debug? config.add_excludes_from_higher_level(load_file(found_files.last)) end merge_with_default(config, config_file) end |
.create_config(hash, path) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/rubocop/config_loader.rb', line 50 def create_config(hash, path) config = Config.new(hash, path) config.deprecation_check do || warn("#{path} - #{}") end config.validate config.make_excludes_absolute config end |
.load_file(path) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/rubocop/config_loader.rb', line 32 def load_file(path) path = File.absolute_path(path) hash = load_yaml_configuration(path) # Resolve requires first in case they define additional cops resolve_requires(path, hash) add_missing_namespaces(path, hash) target_ruby_version_to_f!(hash) resolve_inheritance_from_gems(hash, hash.delete('inherit_gem')) resolve_inheritance(path, hash) hash.delete('inherit_from') create_config(hash, path) end |
.merge(base_hash, derived_hash) ⇒ Object
Return a recursive merge of two hashes. That is, a normal hash merge, with the addition that any value that is a hash, and occurs in both arguments, will also be merged. And so on.
76 77 78 79 80 81 82 83 84 |
# File 'lib/rubocop/config_loader.rb', line 76 def merge(base_hash, derived_hash) result = base_hash.merge(derived_hash) keys_appearing_in_both = base_hash.keys & derived_hash.keys keys_appearing_in_both.each do |key| next unless base_hash[key].is_a?(Hash) result[key] = merge(base_hash[key], derived_hash[key]) end result end |
.merge_with_default(config, config_file) ⇒ Object
Merges the given configuration with the default one. If AllCops:DisabledByDefault is true, it changes the Enabled params so that only cops from user configuration are enabled. If AllCops::EnabledByDefault is true, it changes the Enabled params so that only cops explicitly disabled in user configuration are disabled.
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/rubocop/config_loader.rb', line 139 def merge_with_default(config, config_file) default_configuration = self.default_configuration disabled_by_default = config.for_all_cops['DisabledByDefault'] enabled_by_default = config.for_all_cops['EnabledByDefault'] if disabled_by_default || enabled_by_default default_configuration = transform(default_configuration) do |params| params.merge('Enabled' => !disabled_by_default) end end if disabled_by_default config = handle_disabled_by_default(config, default_configuration) end Config.new(merge(default_configuration, config), config_file) end |
.target_ruby_version_to_f!(hash) ⇒ Object
158 159 160 161 162 163 |
# File 'lib/rubocop/config_loader.rb', line 158 def target_ruby_version_to_f!(hash) version = 'TargetRubyVersion' return unless hash['AllCops'] && hash['AllCops'][version] hash['AllCops'][version] = hash['AllCops'][version].to_f end |