diff --git a/.rubocop.yml b/.rubocop.yml index 35b4d17..faf42b2 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -6,9 +6,6 @@ AllCops: Gemspec/OrderedDependencies: Enabled: false -Layout/AlignHash: - Enabled: false - Layout/EmptyLineAfterGuardClause: Enabled: false @@ -16,7 +13,10 @@ Layout/EmptyLineAfterGuardClause: Layout/EmptyLinesAroundArguments: Enabled: false -Layout/LeadingBlankLines: +Layout/HashAlignment: + Enabled: false + +Layout/LeadingEmptyLines: Enabled: false Layout/SpaceInsideHashLiteralBraces: @@ -43,7 +43,7 @@ Metrics/MethodLength: Metrics/PerceivedComplexity: Enabled: false -Naming/UncommunicativeMethodParamName: +Naming/MethodParameterName: Enabled: false Naming/MemoizedInstanceVariableName: diff --git a/dyndnsd.gemspec b/dyndnsd.gemspec index 9526234..fb40713 100644 --- a/dyndnsd.gemspec +++ b/dyndnsd.gemspec @@ -31,6 +31,6 @@ Gem::Specification.new do |s| s.add_development_dependency 'rake' s.add_development_dependency 'rspec' s.add_development_dependency 'rack-test' - s.add_development_dependency 'rubocop', '~> 0.76.0' + s.add_development_dependency 'rubocop', '~> 0.77.0' s.add_development_dependency 'bundler-audit' end