1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-06-26 12:30:18 +02:00

gem: enable new rubocop rules, cleanup

This commit is contained in:
cn
2020-02-26 11:33:44 +01:00
parent a42a864f56
commit 3406e22588
2 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,3 @@
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: '2.3'
@ -19,6 +17,9 @@ Layout/HashAlignment:
Layout/LeadingEmptyLines:
Enabled: false
Layout/LineLength:
Max: 200
Layout/SpaceInsideHashLiteralBraces:
Enabled: false
@ -34,9 +35,6 @@ Metrics/ClassLength:
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineLength:
Max: 200
Metrics/MethodLength:
Enabled: false
@ -64,6 +62,15 @@ Style/FrozenStringLiteralComment:
Style/GuardClause:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/IdenticalConditionalBranches:
Enabled: false