rating/.rubocop.yml

49 lines
690 B
YAML
Raw Normal View History

2017-10-30 01:44:23 +00:00
require: rubocop-rspec
inherit_from: .rubocop_todo.yml
Rails:
Enabled: true
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
2018-01-26 21:58:12 +00:00
Rails/ApplicationRecord:
2017-10-30 01:44:23 +00:00
Enabled: false
2018-01-26 21:58:12 +00:00
RSpec/DescribeMethod:
2017-10-30 01:44:23 +00:00
Enabled: false
2018-01-26 21:58:12 +00:00
RSpec/ExampleLength:
Max: 10
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
Metrics/LineLength:
Max: 120
Naming/VariableNumber:
EnforcedStyle: snake_case
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': '[]'