config/rails.yml in rubocop-rickselby-0.6.0 vs config/rails.yml in rubocop-rickselby-0.7.0
- old
+ new
@@ -1,9 +1,14 @@
require:
- rubocop-rails
- rubocop-rails-accessibility
+# Config blocks can be very long
+Metrics/BlockLength:
+ Exclude:
+ - 'config/**/*'
+
# casecmp does not work with all of Unicode, so this is not a good optimization for internationalized apps
Performance/Casecmp:
Enabled: false
# This cop is unsafe because it has known compatibility issues with ActiveRecord and other frameworks.
@@ -20,7 +25,8 @@
Style/Documentation:
Exclude:
- app/controllers/**/*
- app/models/**/*
+ - config/**/*
- db/migrate/**/*
- test/**/*