Class: RuboCop::ConfigLoader
- Inherits:
-
Object
- Object
- RuboCop::ConfigLoader
- 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
-
.ignore_parent_exclusion ⇒ Object
(also: ignore_parent_exclusion?)
Returns the value of attribute ignore_parent_exclusion.
-
.root_level ⇒ Object
writeonly
The upwards search is stopped at this level.
Class Method Summary collapse
- .add_excludes_from_files(config, config_file) ⇒ Object
- .add_inheritance_from_auto_generated_file ⇒ Object
-
.add_missing_namespaces(path, hash) ⇒ Object
rubocop:disable Performance/HashEachMethods.
- .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
- .load_file(file) ⇒ 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
Class Attribute Details
.auto_gen_config ⇒ Object Also known as: auto_gen_config?
Returns the value of attribute auto_gen_config.
19 20 21 |
# File 'lib/rubocop/config_loader.rb', line 19 def auto_gen_config @auto_gen_config end |
.debug ⇒ Object Also known as: debug?
Returns the value of attribute debug.
19 20 21 |
# File 'lib/rubocop/config_loader.rb', line 19 def debug @debug end |
.default_configuration ⇒ Object
97 98 99 100 101 102 |
# File 'lib/rubocop/config_loader.rb', line 97 def default_configuration @default_configuration ||= begin print 'Default ' if debug? load_file(DEFAULT_FILE) end end |
.ignore_parent_exclusion ⇒ Object Also known as: ignore_parent_exclusion?
Returns the value of attribute ignore_parent_exclusion.
19 20 21 |
# File 'lib/rubocop/config_loader.rb', line 19 def ignore_parent_exclusion @ignore_parent_exclusion end |
.root_level=(value) ⇒ Object (writeonly)
The upwards search is stopped at this level.
20 21 22 |
# File 'lib/rubocop/config_loader.rb', line 20 def root_level=(value) @root_level = value end |
Class Method Details
.add_excludes_from_files(config, config_file) ⇒ Object
90 91 92 93 94 95 |
# File 'lib/rubocop/config_loader.rb', line 90 def add_excludes_from_files(config, config_file) found_files = config_files_in_path(config_file) return unless 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 |
.add_inheritance_from_auto_generated_file ⇒ Object
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/rubocop/config_loader.rb', line 121 def add_inheritance_from_auto_generated_file file_string = " #{AUTO_GENERATED_FILE}" if File.exist?(DOTFILE) files = Array(load_yaml_configuration(DOTFILE)['inherit_from']) return if files.include?(AUTO_GENERATED_FILE) files.unshift(AUTO_GENERATED_FILE) file_string = "\n - " + files.join("\n - ") if files.size > 1 rubocop_yml_contents = IO.read(DOTFILE, encoding: Encoding::UTF_8) .sub(/^inherit_from: *[.\w]+/, '') .sub(/^inherit_from: *(\n *- *[.\w]+)+/, '') end write_dotfile(file_string, rubocop_yml_contents) puts "Added inheritance from `#{AUTO_GENERATED_FILE}` in `#{DOTFILE}`." end |
.add_missing_namespaces(path, hash) ⇒ Object
rubocop:disable Performance/HashEachMethods
52 53 54 55 56 57 58 59 |
# File 'lib/rubocop/config_loader.rb', line 52 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 |
.clear_options ⇒ Object
27 28 29 |
# File 'lib/rubocop/config_loader.rb', line 27 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.
74 75 76 |
# File 'lib/rubocop/config_loader.rb', line 74 def configuration_file_for(target_dir) config_files_in_path(target_dir).first || DEFAULT_FILE end |
.configuration_from_file(config_file) ⇒ Object
78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/rubocop/config_loader.rb', line 78 def configuration_from_file(config_file) config = load_file(config_file) return config if config_file == DEFAULT_FILE if ignore_parent_exclusion? print 'Ignoring AllCops/Exclude from parent folders' if debug? else add_excludes_from_files(config, config_file) end merge_with_default(config, config_file) end |
.load_file(file) ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/rubocop/config_loader.rb', line 31 def load_file(file) return if file.nil? path = File.absolute_path(file.is_a?(RemoteConfig) ? file.file : file) hash = load_yaml_configuration(path) # Resolve requires first in case they define additional cops resolver.resolve_requires(path, hash) add_missing_namespaces(path, hash) target_ruby_version_to_f!(hash) resolver.resolve_inheritance_from_gems(hash, hash.delete('inherit_gem')) resolver.resolve_inheritance(path, hash, file) hash.delete('inherit_from') Config.create(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.
65 66 67 |
# File 'lib/rubocop/config_loader.rb', line 65 def merge(base_hash, derived_hash) resolver.merge(base_hash, derived_hash) 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.
110 111 112 |
# File 'lib/rubocop/config_loader.rb', line 110 def merge_with_default(config, config_file) resolver.merge_with_default(config, config_file) end |
.target_ruby_version_to_f!(hash) ⇒ Object
114 115 116 117 118 119 |
# File 'lib/rubocop/config_loader.rb', line 114 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 |