inherit_from: .rubocop_todo.yml
+require:
+ - rubocop-performance
+ - rubocop-rails
+
AllCops:
- TargetRubyVersion: 2.3
+ TargetRubyVersion: 2.5
+ Exclude:
+ - 'vendor/**/*'
Rails:
Enabled: true
- 'app/controllers/application_controller.rb'
- 'app/controllers/site_controller.rb'
+Metrics/BlockLength:
+ Exclude:
+ - 'config/routes.rb'
+
+Metrics/ClassLength:
+ Exclude:
+ - 'test/**/*'
+
+Metrics/ModuleLength:
+ Max: 150
+
Naming/FileName:
Exclude:
- 'script/deliver-message'
- 'script/locale/reload-languages'
- 'script/update-spam-blocks'
-Naming/UncommunicativeMethodParamName:
- Enabled: false
-
-Rails/ApplicationRecord:
+Naming/MethodParameterName:
Enabled: false
Rails/CreateTableWithTimestamps:
Style/BracesAroundHashParameters:
EnforcedStyle: context_dependent
+Style/Documentation:
+ Enabled: false
+
Style/FormatStringToken:
EnforcedStyle: template