2020-12-09 18:28:42 +01:00
|
|
|
AllCops:
|
|
|
|
Exclude:
|
|
|
|
- 'vendor/**/*'
|
|
|
|
- '.git/**/*'
|
2021-01-02 07:46:33 +01:00
|
|
|
- 'node_modules/**/*'
|
|
|
|
- 'bin/bundle'
|
|
|
|
- 'bin/cap*'
|
|
|
|
- 'bin/rails'
|
|
|
|
- 'bin/rake'
|
|
|
|
- 'bin/rspec'
|
2020-12-09 18:28:42 +01:00
|
|
|
- 'bin/rubocop'
|
2021-01-02 07:46:33 +01:00
|
|
|
- 'bin/setup'
|
|
|
|
- 'bin/spring'
|
|
|
|
- 'bin/update'
|
|
|
|
- 'bin/webpack*'
|
|
|
|
- '**/db/*schema.rb'
|
|
|
|
- 'pkg/**/*'
|
|
|
|
|
|
|
|
TargetRubyVersion: '2.7'
|
2020-12-09 18:28:42 +01:00
|
|
|
|
|
|
|
Style/Documentation:
|
|
|
|
Enabled: false
|
|
|
|
|
2021-01-02 07:46:33 +01:00
|
|
|
# False-Positive: non-string-variable + 'some string'
|
|
|
|
Style/StringConcatenation:
|
|
|
|
Enabled: false
|
2020-12-09 18:28:42 +01:00
|
|
|
|
|
|
|
Layout/MultilineMethodCallIndentation:
|
|
|
|
EnforcedStyle: indented
|
|
|
|
|
2021-01-02 07:46:33 +01:00
|
|
|
Layout/MultilineOperationIndentation:
|
|
|
|
EnforcedStyle: indented
|
|
|
|
|
2020-12-09 18:28:42 +01:00
|
|
|
Layout/ArgumentAlignment:
|
|
|
|
EnforcedStyle: with_fixed_indentation
|
|
|
|
|
|
|
|
Layout/EndAlignment:
|
|
|
|
EnforcedStyleAlignWith: variable
|
|
|
|
|
|
|
|
Metrics/BlockLength:
|
2021-01-02 07:46:33 +01:00
|
|
|
IgnoredMethods:
|
|
|
|
- describe
|
|
|
|
- refine
|