default.yml in ramsey_cop-0.10.0 vs default.yml in ramsey_cop-0.11.0

- old
+ new

@@ -1,8 +1,9 @@ AllCops: Exclude: - - "db/schema.rb" + - db/schema.rb + - vendor/**/* Documentation: Enabled: false Layout/AccessModifierIndentation: @@ -13,10 +14,13 @@ - spec/**/* - test/**/* Metrics/BlockLength: Exclude: + - config/initializers/* + - config/routes.rb + - Gemfile - spec/**/* - test/**/* - "*.gemspec" - "**/*.rake" @@ -30,11 +34,21 @@ - spec/**/* - test/**/* Metrics/LineLength: Max: 120 + Exclude: + - config/routes.rb + - config/routes/* + - db/migrate/* Metrics/MethodLength: + Exclude: + - db/migrate/* + - spec/**/* + - test/**/* + +Metrics/ModuleLength: Exclude: - spec/**/* - test/**/* Style/Alias: