.rubocop.yml in attribeauty-0.2.0 vs .rubocop.yml in attribeauty-0.3.0

- old
+ new

@@ -1,7 +1,7 @@ AllCops: - TargetRubyVersion: 2.6 + TargetRubyVersion: 3.2 Style/StringLiterals: Enabled: true EnforcedStyle: double_quotes @@ -9,5 +9,23 @@ Enabled: true EnforcedStyle: double_quotes Layout/LineLength: Max: 120 + +Style/Documentation: + Enabled: false + +Metrics/MethodLength: + Max: 30 + +Metrics/AbcSize: + Enabled: false + +Metrics/ClassLength: + Enabled: false + +Metrics/PerceivedComplexity: + Enabled: false + +Metrics/CyclomaticComplexity: + Enabled: false