23 lines
418 B
YAML
23 lines
418 B
YAML
require:
|
|
- rubocop-rails
|
|
- rubocop-factory_bot
|
|
- rubocop-rspec
|
|
- rubocop-rspec_rails
|
|
AllCops:
|
|
NewCops: enable
|
|
Exclude:
|
|
- 'db/**/*'
|
|
- 'config/**/*'
|
|
- 'script/**/*'
|
|
- 'bin/{rails,rake}'
|
|
- '*.yml'
|
|
Layout/LineLength:
|
|
Max: 120
|
|
RSpec/ExampleLength:
|
|
Enabled: false
|
|
Metrics/ModuleLength:
|
|
Enabled: false
|
|
RSpec/MultipleMemoizedHelpers:
|
|
Enabled: false
|
|
Style/Documentation:
|
|
Enabled: false |