.rubocop.yml in red_amber-0.1.1 vs .rubocop.yml in red_amber-0.1.2

- old
+ new

@@ -43,19 +43,19 @@ Exclude: - 'test/test_vector_function.rb' # Max: 120 Layout/LineLength: - Max: 100 + Max: 118 Exclude: - 'test/**/*' # <= 17 satisfactory # 18..30 unsatisfactory # > 30 dangerous Metrics/AbcSize: - Max: 19 + Max: 23 Exclude: - 'lib/red_amber/data_frame_output.rb' # Max: 78 # Max: 25 Metrics/BlockLength: @@ -82,8 +82,13 @@ Exclude: - 'lib/red_amber/data_frame_output.rb' # Max: 35 # Max: 8 Metrics/PerceivedComplexity: - Max: 9 + Max: 11 Exclude: - 'lib/red_amber/data_frame_output.rb' # Max: 12 + +# Necessary to test when range.end == -1 +Style/SlicingWithRange: + Exclude: + - 'test/test_data_frame_selectable.rb'