rating/.rubocop.yml

76 lines
1.1 KiB
YAML
Raw Normal View History

2019-10-03 22:07:50 +00:00
require:
- rubocop-performance
- rubocop-rspec
2017-10-30 01:44:23 +00:00
inherit_from: .rubocop_todo.yml
2019-10-03 22:07:50 +00:00
Layout/AlignArguments:
EnforcedStyle: with_fixed_indentation
Layout/AlignHash:
EnforcedColonStyle: table
Enabled: false
2017-10-30 01:44:23 +00:00
2018-01-26 21:58:12 +00:00
Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation
2017-10-30 01:44:23 +00:00
2018-01-26 21:58:12 +00:00
Layout/EmptyLinesAroundArguments:
2017-10-30 01:44:23 +00:00
Enabled: false
2019-10-03 22:07:50 +00:00
Layout/MultilineMethodCallBraceLayout:
EnforcedStyle: new_line
Metrics/AbcSize:
Max: 50
Metrics/BlockLength:
2017-10-30 01:44:23 +00:00
Enabled: false
2019-10-03 22:07:50 +00:00
Metrics/LineLength:
Max: 120
Metrics/MethodLength:
Max: 50
Naming/VariableNumber:
EnforcedStyle: snake_case
Rails:
Enabled: true
RSpec/AnyInstance:
2017-10-30 01:44:23 +00:00
Enabled: false
2018-01-26 21:58:12 +00:00
RSpec/ExampleLength:
2019-10-03 22:07:50 +00:00
Enabled: false
2017-10-30 01:44:23 +00:00
2018-01-26 21:58:12 +00:00
RSpec/FilePath:
2017-10-30 01:44:23 +00:00
Enabled: false
2018-01-26 21:58:12 +00:00
RSpec/MultipleExpectations:
2017-10-30 01:44:23 +00:00
Enabled: false
2018-01-26 21:58:12 +00:00
RSpec/NestedGroups:
Max: 5
2017-10-30 01:44:23 +00:00
2018-01-26 21:58:12 +00:00
Style/Documentation:
Enabled: false
2017-10-30 01:44:23 +00:00
Style/PercentLiteralDelimiters:
PreferredDelimiters:
2018-01-26 21:58:12 +00:00
'%': '()'
2017-10-30 01:44:23 +00:00
'%i': '[]'
'%I': '[]'
2018-01-26 21:58:12 +00:00
'%r': '()'
2017-10-30 01:44:23 +00:00
'%w': '[]'
'%W': '[]'
2019-10-03 22:07:50 +00:00
Style/PerlBackrefs:
Enabled: false
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma