Method: RuboCop::Cop::Base#cop_config

Defined in:
lib/rubocop/cop/base.rb

#cop_configObject

Configuration Helpers

[View source]

246
247
248
249
250
# File 'lib/rubocop/cop/base.rb', line 246

def cop_config
  # Use department configuration as basis, but let individual cop
  # configuration override.
  @cop_config ||= @config.for_badge(self.class.badge)
end