.rubocop.yml in tikkie-api-0.2.0 vs .rubocop.yml in tikkie-api-0.2.1

- old
+ new

@@ -1,10 +1,13 @@ +require: rubocop-rspec + AllCops: TargetRubyVersion: 2.3 DisplayCopNames: true DisplayStyleGuide: true + Metrics/AbcSize: Max: 21 Metrics/BlockLength: Exclude: @@ -16,9 +19,23 @@ Metrics/LineLength: Enabled: false Metrics/MethodLength: Enabled: false + + +RSpec/DescribedClass: + EnforcedStyle: explicit + +RSpec/ExampleLength: + Max: 8 + +RSpec/MultipleExpectations: + Max: 4 + +RSpec/NamedSubject: + Enabled: false + Style/Documentation: Exclude: - 'spec/**/*'