.rubocop.yml in ad-agent_architecture-0.0.6 vs .rubocop.yml in ad-agent_architecture-0.0.7

- old
+ new

@@ -40,10 +40,12 @@ - shared_examples_for - transaction Metrics/MethodLength: Max: 25 + Exclude: + - "lib/ad/agent_architecture/dsl/*" Layout/LineLength: Max: 200 # Ignores annotate output # AllowedPatterns: ['\A# \*\*'] # this is renamed to AllowedPatterns and I need to come up with a template for this @@ -85,10 +87,16 @@ Exclude: - "**/spec/**/*" Style/AccessorGrouping: Enabled: false +Metrics/AbcSize: + Exclude: + - "lib/ad/agent_architecture/dsl/*" +Metrics/NoExpectationExample: + Exclude: + - "spec/ad/agent_architecture/dsl/*" Layout/SpaceBeforeComma: Enabled: false # My Preferences - End @@ -103,5 +111,9 @@ Enabled: true RSpec/NamedSubject: Exclude: - "**/spec/**/*" + +RSpec/ExampleLength: + Exclude: + - "**/spec/**/*" \ No newline at end of file