lib/qonfig/imports/direct_key.rb in qonfig-0.25.0 vs lib/qonfig/imports/direct_key.rb in qonfig-0.26.0

- old
+ new

@@ -32,11 +32,14 @@ # @return [void] # # @api private # @since 0.18.0 # @version 0.21.0 - # rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/BlockLength + # rubocop:disable Metrics/AbcSize + # rubocop:disable Metrics/MethodLength + # rubocop:disable Metrics/BlockLength + # rubocop:disable Metrics/PerceivedComplexity def import!(settings_interface = Module.new) key_matchers.each do |key_matcher| raise( Qonfig::UnknownSettingError, "Setting with <#{key_matcher.scope_pattern}> key does not exist!" @@ -78,10 +81,13 @@ end end end end end - # rubocop:enable Metrics/AbcSize, Metrics/MethodLength, Metrics/BlockLength + # rubocop:enable Metrics/AbcSize + # rubocop:enable Metrics/MethodLength + # rubocop:enable Metrics/BlockLength + # rubocop:enable Metrics/PerceivedComplexity private # @return [Array<String,Symbol>] #