2020-12-09 18:28:42 +01:00
|
|
|
AllCops:
|
|
|
|
Exclude:
|
|
|
|
- 'vendor/**/*'
|
|
|
|
- '.git/**/*'
|
2021-01-19 07:41:37 +01:00
|
|
|
- 'slackbuilds/**/*'
|
2021-01-02 07:46:33 +01:00
|
|
|
- 'bin/bundle'
|
|
|
|
- 'bin/cap*'
|
|
|
|
- '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'
|
|
|
|
- 'pkg/**/*'
|
|
|
|
|
2021-01-19 07:41:37 +01:00
|
|
|
TargetRubyVersion: '3.0'
|
2022-06-14 06:52:24 +02:00
|
|
|
NewCops: enable
|
2022-11-07 09:02:18 +01:00
|
|
|
SuggestExtensions: false
|
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:
|
2022-11-30 21:19:56 +01:00
|
|
|
AllowedMethods:
|
|
|
|
- namespace
|