Module: RuboCop::HGOOSTDD::Inject

Defined in:
lib/rubocop/hgoostdd/inject.rb

Overview

Merges this gem’s default.yml into RuboCop’s default configuration so host projects only need ‘require: rubocop-hgoostdd` in their .rubocop.yml and can rely on the per-cop Include/Exclude/Enabled defaults shipped here.

Class Method Summary collapse

Class Method Details

.defaults!Object



14
15
16
17
18
19
20
21
# File 'lib/rubocop/hgoostdd/inject.rb', line 14

def self.defaults!
  path = CONFIG_DEFAULT.to_s
  hash = ConfigLoader.send(:load_yaml_configuration, path)
  config = RuboCop::Config.new(hash, path)
  puts "configuration from #{path}" if ConfigLoader.debug?
  config = ConfigLoader.merge_with_default(config, path)
  ConfigLoader.instance_variable_set(:@default_configuration, config)
end