diff options
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index be6dfc461..63f7e6a68 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,7 +1,7 @@ inherit_from: .rubocop_todo.yml AllCops: - TargetRubyVersion: 2.5 + TargetRubyVersion: 2.6 TargetRailsVersion: 6.1 NewCops: enable @@ -198,6 +198,9 @@ Style/NegatedIfElseCondition: Style/RaiseArgs: Enabled: false +Style/SlicingWithRange: + Enabled: false + Style/TrailingCommaInArrayLiteral: Enabled: false |