.rubocop.yml in ad-agent_architecture-0.0.9 vs .rubocop.yml in ad-agent_architecture-0.0.10

- old
+ new

@@ -13,10 +13,11 @@ NewCops: enable Exclude: - ".builders/**/*" - "spec/samples/**/*" - "lib/ad/agent_architecture/database/*" + - "spec/usecases/**/*" Metrics/BlockLength: Exclude: - "**/spec/**/*" - "*.gemspec" @@ -114,6 +115,15 @@ Exclude: - "**/spec/**/*" RSpec/ExampleLength: Exclude: - - "**/spec/**/*" \ No newline at end of file + - "**/spec/**/*" + +RSpec/MultipleExpectations: + Max: 3 + Exclude: + - "spec/ad/agent_architecture/dsl/actions/save_database_spec.rb" + +Metrics/CyclomaticComplexity: + Exclude: + - "lib/ad/agent_architecture/dsl/actions/save_database.rb"