.rubocop_todo.yml in landrush-1.2.0 vs .rubocop_todo.yml in landrush-1.3.0

- old
+ new

@@ -1,46 +1,134 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2016-10-04 22:36:56 +0200 using RuboCop version 0.38.0. +# on 2018-08-31 16:33:52 +0200 using RuboCop version 0.58.2. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. # Offense count: 12 Metrics/AbcSize: Max: 47 +# Offense count: 13 +# Configuration parameters: CountComments, ExcludedMethods. +# ExcludedMethods: refine +Metrics/BlockLength: + Max: 89 + # Offense count: 3 # Configuration parameters: CountComments. Metrics/ClassLength: - Max: 218 + Max: 200 + Exclude: + - 'lib/landrush/server.rb' # Offense count: 3 Metrics/CyclomaticComplexity: - Max: 12 + Max: 11 + Exclude: + - 'lib/landrush/command.rb' -# Offense count: 144 -# Configuration parameters: AllowHeredoc, AllowURI, URISchemes. -# URISchemes: http, https -Metrics/LineLength: - Max: 154 - -# Offense count: 14 +# Offense count: 13 # Configuration parameters: CountComments. Metrics/MethodLength: Max: 29 # Offense count: 3 Metrics/PerceivedComplexity: - Max: 14 + Max: 12 + Exclude: + - 'lib/landrush/command.rb' -# Offense count: 32 +# Offense count: 9 +# Configuration parameters: Blacklist. +# Blacklist: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$)) +Naming/HeredocDelimiterNaming: + Exclude: + - 'lib/landrush/cap/host/arch/restart_dnsmasq.rb' + - 'lib/landrush/cap/host/darwin/configure_visibility_on_host.rb' + - 'lib/landrush/cap/host/linux/create_dnsmasq_config.rb' + - 'lib/landrush/cap/host/redhat/restart_dnsmasq.rb' + - 'lib/landrush/cap/host/suse/restart_dnsmasq.rb' + - 'lib/landrush/command.rb' + - 'test/landrush/cap/host/darwin/configure_visibility_on_host_test.rb' + - 'test/landrush/cap/host/linux/configure_visibility_on_host_test.rb' + +# Offense count: 1 +# Configuration parameters: EnforcedStyleForLeadingUnderscores. +# SupportedStylesForLeadingUnderscores: disallowed, required, optional +Naming/MemoizedInstanceVariableName: + Exclude: + - 'test/test_helper.rb' + +# Offense count: 2 +# Cop supports --auto-correct. +Performance/RegexpMatch: + Exclude: + - 'lib/landrush/action/setup.rb' + - 'lib/landrush/dns_server.rb' + +# Offense count: 41 Style/Documentation: Enabled: false # Offense count: 2 Style/DoubleNegation: Exclude: - 'lib/landrush/config.rb' - 'lib/landrush/server.rb' +# Offense count: 2 +# Configuration parameters: MinBodyLength. +Style/GuardClause: + Exclude: + - 'lib/landrush/action/install_prerequisites.rb' + - 'lib/landrush/action/setup.rb' + +# Offense count: 5 +# Cop supports --auto-correct. +Style/IfUnlessModifier: + Exclude: + - 'lib/landrush/cap/guest/linux/configured_dns_servers.rb' + - 'lib/landrush/cap/host/windows/configure_visibility_on_host.rb' + - 'lib/landrush/config.rb' + - 'lib/landrush/plugin.rb' + - 'lib/landrush/server.rb' + +# Offense count: 3 +Style/MultipleComparison: + Exclude: + - 'lib/landrush/command.rb' + +# Offense count: 2 +# Cop supports --auto-correct. +# Configuration parameters: AutoCorrect, EnforcedStyle. +# SupportedStyles: predicate, comparison +Style/NumericPredicate: + Exclude: + - 'spec/**/*' + - 'lib/landrush/store.rb' + - 'lib/landrush/util/process_helper.rb' + +# Offense count: 1 +# Cop supports --auto-correct. +Style/RedundantBegin: + Exclude: + - 'lib/landrush/cap/host/windows/configure_visibility_on_host.rb' + +# Offense count: 4 +# Cop supports --auto-correct. +# Configuration parameters: ConvertCodeThatCanStartToReturnNil, Whitelist. +# Whitelist: present?, blank?, presence, try, try! +Style/SafeNavigation: + Exclude: + - 'lib/landrush/cap/host/darwin/configure_visibility_on_host.rb' + - 'lib/landrush/cap/host/linux/create_dnsmasq_config.rb' + - 'lib/landrush/cap/host/windows/configure_visibility_on_host.rb' + - 'lib/landrush/server.rb' + +# Offense count: 161 +# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. +# URISchemes: http, https +Metrics/LineLength: + Max: 154