Enable pending cops

```
The following cops were added to RuboCop, but are not configured. Please set Enabled to either `true` or `false` in your `.rubocop.yml` file:
 - Lint/RaiseException (0.81)
 - Lint/StructNewOverride (0.81)
 - Style/HashEachMethods (0.80)
 - Style/HashTransformKeys (0.80)
 - Style/HashTransformValues (0.80)
For more information: https://docs.rubocop.org/en/latest/versioning/
```
This commit is contained in:
Claudio Bley 2020-04-16 22:20:13 +02:00
parent 1234d82587
commit 68436f9f73

View file

@ -35,6 +35,12 @@ Layout/SpaceInsideHashLiteralBraces:
Layout/ParameterAlignment:
EnforcedStyle: with_fixed_indentation
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Style/EmptyElse:
EnforcedStyle: empty
@ -63,6 +69,15 @@ Style/ParallelAssignment:
Style/DoubleNegation:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/SingleLineBlockParams:
Enabled: false