32 lines
444 B
YAML
32 lines
444 B
YAML
|
|
require: rubocop-rspec
|
||
|
|
|
||
|
|
AllCops:
|
||
|
|
TargetRubyVersion: 2.1
|
||
|
|
|
||
|
|
Layout/AccessModifierIndentation:
|
||
|
|
EnforcedStyle: outdent
|
||
|
|
|
||
|
|
Layout/EmptyLinesAroundAccessModifier:
|
||
|
|
Enabled: false
|
||
|
|
|
||
|
|
Style/Documentation:
|
||
|
|
Enabled: false
|
||
|
|
|
||
|
|
Metrics/LineLength:
|
||
|
|
Max: 120
|
||
|
|
|
||
|
|
Metrics/MethodLength:
|
||
|
|
Max: 15
|
||
|
|
|
||
|
|
Metrics/ParameterLists:
|
||
|
|
Enabled: false
|
||
|
|
|
||
|
|
Metrics/BlockLength:
|
||
|
|
Enabled: false
|
||
|
|
|
||
|
|
Style/StringLiterals:
|
||
|
|
EnforcedStyle: single_quotes
|
||
|
|
|
||
|
|
RSpec/NestedGroups:
|
||
|
|
Max: 5
|