35 lines
525 B
YAML
35 lines
525 B
YAML
require: rubocop-rspec
|
|
|
|
Rails:
|
|
Enabled: True
|
|
|
|
AllCops:
|
|
TargetRubyVersion: 2.5
|
|
Exclude:
|
|
- 'bin/**/*'
|
|
- 'db/**/*'
|
|
- 'config/**/*'
|
|
- 'lib/templates/**/*'
|
|
- 'script/**/*'
|
|
|
|
Style/AccessModifierIndentation:
|
|
EnforcedStyle: outdent
|
|
|
|
Style/EmptyLinesAroundAccessModifier:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Lint/Debugger:
|
|
Enabled: false
|
|
|
|
Metrics/LineLength:
|
|
Max: 140
|
|
|
|
Style/StringLiterals:
|
|
EnforcedStyle: single_quotes
|
|
SupportedStyles:
|
|
- single_quotes
|
|
- double_quotes
|