mirror of
https://github.com/jimeh/bunnyrun.git
synced 2026-02-18 23:46:39 +00:00
27 lines
395 B
YAML
27 lines
395 B
YAML
inherit_from: .rubocop_todo.yml
|
|
require: rubocop-rspec
|
|
|
|
AllCops:
|
|
TargetRubyVersion: 2.3
|
|
|
|
Documentation:
|
|
Enabled: false
|
|
|
|
Style/HashSyntax:
|
|
EnforcedStyle: ruby19_no_mixed_keys
|
|
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- spec/**/*_spec.rb
|
|
|
|
Metrics/ModuleLength:
|
|
Exclude:
|
|
- spec/**/*_spec.rb
|
|
|
|
RSpec/FilePath:
|
|
Exclude:
|
|
- 'spec/lib/bunnyrun_spec.rb'
|
|
|
|
RSpec/MultipleExpectations:
|
|
Max: 2
|