24 lines
416 B
YAML
24 lines
416 B
YAML
require:
|
|
- rubocop-performance
|
|
- rubocop-rails
|
|
- rubocop-rspec
|
|
|
|
AllCops:
|
|
Exclude:
|
|
- db/schema.rb
|
|
TargetRubyVersion: 2.5
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- app/admin/*.rb
|
|
- config/routes.rb
|
|
- config/environments/*.rb
|
|
Style/FrozenStringLiteralComment:
|
|
Enabled: false
|
|
Style/HashEachMethods:
|
|
Enabled: true
|
|
Style/HashTransformKeys:
|
|
Enabled: true
|
|
Style/HashTransformValues:
|
|
Enabled: true
|
|
|