From 9dffed978cd148f5c91970e71678e28e78bad064 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 10 Oct 2021 18:50:21 +0900 Subject: [PATCH] Add `Safety` section to documentation Follow up to Follow up to https://github.com/rubocop/rubocop/pull/10094. This PR adds safety section to documentation for all cops that are `Safe: false` or `SafeAutoCorrect: false`. --- .yardopts | 3 + docs/modules/ROOT/pages/cops_performance.adoc | 130 ++++++++++++++---- .../cop/performance/ancestors_include.rb | 4 + .../array_semi_infinite_range_slice.rb | 4 +- .../cop/performance/case_when_splat.rb | 12 +- lib/rubocop/cop/performance/casecmp.rb | 6 +- lib/rubocop/cop/performance/count.rb | 35 +++-- lib/rubocop/cop/performance/delete_prefix.rb | 4 +- lib/rubocop/cop/performance/delete_suffix.rb | 4 +- lib/rubocop/cop/performance/detect.rb | 5 + lib/rubocop/cop/performance/end_with.rb | 5 + .../performance/inefficient_hash_search.rb | 3 + lib/rubocop/cop/performance/map_compact.rb | 6 +- lib/rubocop/cop/performance/open_struct.rb | 4 + lib/rubocop/cop/performance/range_include.rb | 5 +- .../redundant_equality_comparison_block.rb | 5 +- .../cop/performance/redundant_merge.rb | 5 +- lib/rubocop/cop/performance/start_with.rb | 5 + lib/rubocop/cop/performance/string_include.rb | 3 +- lib/rubocop/cop/performance/times_map.rb | 12 ++ .../cop/performance/unfreeze_string.rb | 10 +- 21 files changed, 209 insertions(+), 61 deletions(-) create mode 100644 .yardopts diff --git a/.yardopts b/.yardopts new file mode 100644 index 0000000000..4419be7d6b --- /dev/null +++ b/.yardopts @@ -0,0 +1,3 @@ +--markup markdown +--hide-void-return +--tag safety:"Cop Safety Information" diff --git a/docs/modules/ROOT/pages/cops_performance.adoc b/docs/modules/ROOT/pages/cops_performance.adoc index 510fccdd64..a6b5236e4b 100644 --- a/docs/modules/ROOT/pages/cops_performance.adoc +++ b/docs/modules/ROOT/pages/cops_performance.adoc @@ -15,6 +15,11 @@ This cop is used to identify usages of `ancestors.include?` and change them to use `<=` instead. +=== Safety + +This cop is unsafe because it can't tell whether the receiver is a class or an object. +e.g. the false positive was for `Nokogiri::XML::Node#ancestors`. + === Examples [source,ruby] @@ -48,7 +53,10 @@ This cop identifies places where slicing arrays with semi-infinite ranges can be replaced by `Array#take` and `Array#drop`. This cop was created due to a mistake in microbenchmark and hence is disabled by default. Refer https://github.com/rubocop/rubocop-performance/pull/175#issuecomment-731892717 -This cop is also unsafe for string slices because strings do not have `#take` and `#drop` methods. + +=== Safety + +This cop is unsafe for string slices because strings do not have `#take` and `#drop` methods. === Examples @@ -227,11 +235,14 @@ conditions can be true for any given condition. A likely scenario for this defining a higher level when condition to override a condition that is inside of the splat expansion. -This is not a guaranteed performance improvement. If the data being -processed by the `case` condition is normalized in a manner that favors -hitting a condition in the splat expansion, it is possible that -moving the splat condition to the end will use more memory, +=== Safety + +This cop is not unsafe auto-correction because it is not a guaranteed +performance improvement. If the data being processed by the `case` condition is +normalized in a manner that favors hitting a condition in the splat expansion, +it is possible that moving the splat condition to the end will use more memory, and run slightly slower. +See for more details: https://github.com/rubocop/rubocop/pull/6163 === Examples @@ -292,6 +303,9 @@ end This cop identifies places where a case-insensitive string comparison can better be implemented using `casecmp`. + +=== Safety + This cop is unsafe because `String#casecmp` and `String#casecmp?` behave differently when using Non-ASCII characters. @@ -505,18 +519,28 @@ This cop is used to identify usages of `count` on an `Enumerable` that follow calls to `select`, `find_all`, `filter` or `reject`. Querying logic can instead be passed to the `count` call. -`ActiveRecord` compatibility: +=== Safety + +This cop is unsafe because it has known compatibility issues with `ActiveRecord` and other +frameworks. ActiveRecord's `count` ignores the block that is passed to it. `ActiveRecord` will ignore the block that is passed to `count`. Other methods, such as `select`, will convert the association to an array and then run the block on the array. A simple work around to make `count` work with a block is to call `to_a.count {...}`. -Example: - `Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size` +For example: - becomes: +[source,ruby] +---- +`Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size` +---- - `Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }` +becomes: + +[source,ruby] +---- +`Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }` +---- === Examples @@ -556,7 +580,6 @@ In Ruby 2.5, `String#delete_prefix` has been added. This cop identifies places where `gsub(/\Aprefix/, '')` and `sub(/\Aprefix/, '')` can be replaced by `delete_prefix('prefix')`. -It is marked as unsafe by default because `Pathname` has `sub` but not `delete_prefix`. This cop has `SafeMultiline` configuration option that `true` by default because `^prefix` is unsafe as it will behave incompatible with `delete_prefix` @@ -564,6 +587,10 @@ for receiver is multiline string. The `delete_prefix('prefix')` method is faster than `gsub(/\Aprefix/, '')`. +=== Safety + +This cop is unsafe because `Pathname` has `sub` but not `delete_prefix`. + === Examples [source,ruby] @@ -628,7 +655,6 @@ In Ruby 2.5, `String#delete_suffix` has been added. This cop identifies places where `gsub(/suffix\z/, '')` and `sub(/suffix\z/, '')` can be replaced by `delete_suffix('suffix')`. -It is marked as unsafe by default because `Pathname` has `sub` but not `delete_suffix`. This cop has `SafeMultiline` configuration option that `true` by default because `suffix$` is unsafe as it will behave incompatible with `delete_suffix?` @@ -636,6 +662,10 @@ for receiver is multiline string. The `delete_suffix('suffix')` method is faster than `gsub(/suffix\z/, '')`. +=== Safety + +This cop is unsafe because `Pathname` has `sub` but not `delete_suffix`. + === Examples [source,ruby] @@ -705,6 +735,12 @@ chained to `select`, `find_all` or `filter` and change them to use own meaning. Correcting ActiveRecord methods with this cop should be considered unsafe. +=== Safety + +This cop is unsafe because is has known compatibility issues with `ActiveRecord` and other +frameworks. `ActiveRecord` does not implement a `detect` method and `find` has its own +meaning. Correcting `ActiveRecord` methods with this cop should be considered unsafe. + === Examples [source,ruby] @@ -787,6 +823,12 @@ This cop has `SafeMultiline` configuration option that `true` by default because `end$` is unsafe as it will behave incompatible with `end_with?` for receiver is multiline string. +=== Safety + +This will change to a new method call which isn't guaranteed to be on the +object. Switching these methods has to be done with knowledge of the types +of the variables which rubocop doesn't have. + === Examples [source,ruby] @@ -968,6 +1010,10 @@ performs a faster O(1) search for the key. both perform an O(n) search through all of the values, calling `values` allocates a new array while using `value?` does not. +=== Safety + +This cop is unsafe because it can't tell whether the receiver is a hash object. + === Examples [source,ruby] @@ -1054,8 +1100,6 @@ NOTE: Required Ruby version: 2.7 In Ruby 2.7, `Enumerable#filter_map` has been added. This cop identifies places where `map { ... }.compact` can be replaced by `filter_map`. -It is marked as unsafe auto-correction by default because `map { ... }.compact` -that is not compatible with `filter_map`. [source,ruby] ---- @@ -1063,6 +1107,11 @@ that is not compatible with `filter_map`. [true, false, nil].filter_map(&:itself) #=> [true] ---- +=== Safety + +This cop's autocorrection is unsafe because `map { ... }.compact` that is not +compatible with `filter_map`. + === Examples [source,ruby] @@ -1130,6 +1179,11 @@ This could have an effect on performance, especially in case of single-threaded applications with multiple `OpenStruct` instantiations. +=== Safety + +This cop is unsafe because `OpenStruct.new` and `Struct.new` +are not equivalent. + === Examples [source,ruby] @@ -1168,8 +1222,10 @@ item in a `Range` to see if a specified item is there. In contrast, end points of the `Range`. In a great majority of cases, this is what is wanted. -This cop is `Safe: false` by default because `Range#include?` (or `Range#member?`) and -`Range#cover?` are not equivalent behaviour. +=== Safety + +This cop is unsafe because `Range#include?` (or `Range#member?`) and `Range#cover?` +are not equivalent behaviour. === Examples @@ -1250,8 +1306,10 @@ and `Enumerable#none?` are compared with `===` or similar methods in block. By default, `Object#===` behaves the same as `Object#==`, but this behavior is appropriately overridden in subclass. For example, `Range#===` returns `true` when argument is within the range. -Therefore, It is marked as unsafe by default because `===` and `==` -do not always behave the same. + +=== Safety + +This cop is unsafe because `===` and `==` do not always behave the same. === Examples @@ -1319,7 +1377,9 @@ This cop identifies places where `Hash#merge!` can be replaced by You can set the maximum number of key-value pairs to consider an offense with `MaxKeyValuePairs`. -This cop is marked as unsafe because RuboCop cannot determine if the +=== Safety + +This cop is unsafe because RuboCop cannot determine if the receiver of `merge!` is actually a hash or not. === Examples @@ -1783,6 +1843,12 @@ This cop has `SafeMultiline` configuration option that `true` by default because `^start` is unsafe as it will behave incompatible with `start_with?` for receiver is multiline string. +=== Safety + +This will change to a new method call which isn't guaranteed to be on the +object. Switching these methods has to be done with knowledge of the types +of the variables which rubocop doesn't have. + === Examples [source,ruby] @@ -1854,6 +1920,8 @@ for receiver is multiline string. This cop identifies unnecessary use of a regex where `String#include?` would suffice. +=== Safety + This cop's offenses are not safe to auto-correct if a receiver is nil. === Examples @@ -1996,6 +2064,19 @@ This cop checks for .times.map calls. In most cases such calls can be replaced with an explicit array creation. +=== Safety + +This cop's autocorrection is unsafe because `Integer#times` does nothing if receiver is 0 +or less. However, `Array.new` raises an error if argument is less than 0. + +For example: + +[source,ruby] +---- +-1.times{} # does nothing +Array.new(-1) # ArgumentError: negative array size +---- + === Examples [source,ruby] @@ -2037,11 +2118,12 @@ In Ruby 2.3 or later, use unary plus operator to unfreeze a string literal instead of `String#dup` and `String.new`. Unary plus operator is faster than `String#dup`. -NOTE: `String.new` (without operator) is not exactly the same as `+''`. -These differ in encoding. `String.new.encoding` is always `ASCII-8BIT`. -However, `(+'').encoding` is the same as script encoding(e.g. `UTF-8`). -Therefore, auto-correction is unsafe. -So, if you expect `ASCII-8BIT` encoding, disable this cop. +=== Safety + +This cop's autocorrection is unsafe because `String.new` (without operator) is not +exactly the same as `+''`. These differ in encoding. `String.new.encoding` is always +`ASCII-8BIT`. However, `(+'').encoding` is the same as script encoding(e.g. `UTF-8`). +if you expect `ASCII-8BIT` encoding, disable this cop. === Examples diff --git a/lib/rubocop/cop/performance/ancestors_include.rb b/lib/rubocop/cop/performance/ancestors_include.rb index b1e9109983..5d3b577428 100644 --- a/lib/rubocop/cop/performance/ancestors_include.rb +++ b/lib/rubocop/cop/performance/ancestors_include.rb @@ -6,6 +6,10 @@ module Performance # This cop is used to identify usages of `ancestors.include?` and # change them to use `<=` instead. # + # @safety + # This cop is unsafe because it can't tell whether the receiver is a class or an object. + # e.g. the false positive was for `Nokogiri::XML::Node#ancestors`. + # # @example # # bad # A.ancestors.include?(B) diff --git a/lib/rubocop/cop/performance/array_semi_infinite_range_slice.rb b/lib/rubocop/cop/performance/array_semi_infinite_range_slice.rb index caef078b90..04f417fd2a 100644 --- a/lib/rubocop/cop/performance/array_semi_infinite_range_slice.rb +++ b/lib/rubocop/cop/performance/array_semi_infinite_range_slice.rb @@ -7,7 +7,9 @@ module Performance # can be replaced by `Array#take` and `Array#drop`. # This cop was created due to a mistake in microbenchmark and hence is disabled by default. # Refer https://github.com/rubocop/rubocop-performance/pull/175#issuecomment-731892717 - # This cop is also unsafe for string slices because strings do not have `#take` and `#drop` methods. + # + # @safety + # This cop is unsafe for string slices because strings do not have `#take` and `#drop` methods. # # @example # # bad diff --git a/lib/rubocop/cop/performance/case_when_splat.rb b/lib/rubocop/cop/performance/case_when_splat.rb index ceb1d5a185..241bc8a94c 100644 --- a/lib/rubocop/cop/performance/case_when_splat.rb +++ b/lib/rubocop/cop/performance/case_when_splat.rb @@ -17,11 +17,13 @@ module Performance # this defining a higher level when condition to override a condition # that is inside of the splat expansion. # - # This is not a guaranteed performance improvement. If the data being - # processed by the `case` condition is normalized in a manner that favors - # hitting a condition in the splat expansion, it is possible that - # moving the splat condition to the end will use more memory, - # and run slightly slower. + # @safety + # This cop is not unsafe auto-correction because it is not a guaranteed + # performance improvement. If the data being processed by the `case` condition is + # normalized in a manner that favors hitting a condition in the splat expansion, + # it is possible that moving the splat condition to the end will use more memory, + # and run slightly slower. + # See for more details: https://github.com/rubocop/rubocop/pull/6163 # # @example # # bad diff --git a/lib/rubocop/cop/performance/casecmp.rb b/lib/rubocop/cop/performance/casecmp.rb index c981757c79..b92ef41a14 100644 --- a/lib/rubocop/cop/performance/casecmp.rb +++ b/lib/rubocop/cop/performance/casecmp.rb @@ -5,8 +5,10 @@ module Cop module Performance # This cop identifies places where a case-insensitive string comparison # can better be implemented using `casecmp`. - # This cop is unsafe because `String#casecmp` and `String#casecmp?` behave - # differently when using Non-ASCII characters. + # + # @safety + # This cop is unsafe because `String#casecmp` and `String#casecmp?` behave + # differently when using Non-ASCII characters. # # @example # # bad diff --git a/lib/rubocop/cop/performance/count.rb b/lib/rubocop/cop/performance/count.rb index d6c6ad0501..935ba4cd12 100644 --- a/lib/rubocop/cop/performance/count.rb +++ b/lib/rubocop/cop/performance/count.rb @@ -7,6 +7,28 @@ module Performance # follow calls to `select`, `find_all`, `filter` or `reject`. Querying logic can instead be # passed to the `count` call. # + # @safety + # This cop is unsafe because it has known compatibility issues with `ActiveRecord` and other + # frameworks. ActiveRecord's `count` ignores the block that is passed to it. + # `ActiveRecord` will ignore the block that is passed to `count`. + # Other methods, such as `select`, will convert the association to an + # array and then run the block on the array. A simple work around to + # make `count` work with a block is to call `to_a.count {...}`. + # + # For example: + # + # [source,ruby] + # ---- + # `Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size` + # ---- + # + # becomes: + # + # [source,ruby] + # ---- + # `Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }` + # ---- + # # @example # # bad # [1, 2, 3].select { |e| e > 2 }.size @@ -24,19 +46,6 @@ module Performance # [1, 2, 3].count { |e| e < 2 && e.even? } # Model.select('field AS field_one').count # Model.select(:value).count - # - # `ActiveRecord` compatibility: - # `ActiveRecord` will ignore the block that is passed to `count`. - # Other methods, such as `select`, will convert the association to an - # array and then run the block on the array. A simple work around to - # make `count` work with a block is to call `to_a.count {...}`. - # - # Example: - # `Model.where(id: [1, 2, 3]).select { |m| m.method == true }.size` - # - # becomes: - # - # `Model.where(id: [1, 2, 3]).to_a.count { |m| m.method == true }` class Count < Base include RangeHelp extend AutoCorrector diff --git a/lib/rubocop/cop/performance/delete_prefix.rb b/lib/rubocop/cop/performance/delete_prefix.rb index 815608aad7..e0279adc89 100644 --- a/lib/rubocop/cop/performance/delete_prefix.rb +++ b/lib/rubocop/cop/performance/delete_prefix.rb @@ -7,7 +7,6 @@ module Performance # # This cop identifies places where `gsub(/\Aprefix/, '')` and `sub(/\Aprefix/, '')` # can be replaced by `delete_prefix('prefix')`. - # It is marked as unsafe by default because `Pathname` has `sub` but not `delete_prefix`. # # This cop has `SafeMultiline` configuration option that `true` by default because # `^prefix` is unsafe as it will behave incompatible with `delete_prefix` @@ -15,6 +14,9 @@ module Performance # # The `delete_prefix('prefix')` method is faster than `gsub(/\Aprefix/, '')`. # + # @safety + # This cop is unsafe because `Pathname` has `sub` but not `delete_prefix`. + # # @example # # # bad diff --git a/lib/rubocop/cop/performance/delete_suffix.rb b/lib/rubocop/cop/performance/delete_suffix.rb index 969b2d2710..49fe964397 100644 --- a/lib/rubocop/cop/performance/delete_suffix.rb +++ b/lib/rubocop/cop/performance/delete_suffix.rb @@ -7,7 +7,6 @@ module Performance # # This cop identifies places where `gsub(/suffix\z/, '')` and `sub(/suffix\z/, '')` # can be replaced by `delete_suffix('suffix')`. - # It is marked as unsafe by default because `Pathname` has `sub` but not `delete_suffix`. # # This cop has `SafeMultiline` configuration option that `true` by default because # `suffix$` is unsafe as it will behave incompatible with `delete_suffix?` @@ -15,6 +14,9 @@ module Performance # # The `delete_suffix('suffix')` method is faster than `gsub(/suffix\z/, '')`. # + # @safety + # This cop is unsafe because `Pathname` has `sub` but not `delete_suffix`. + # # @example # # # bad diff --git a/lib/rubocop/cop/performance/detect.rb b/lib/rubocop/cop/performance/detect.rb index 08d16f1d1b..ac413e7cc9 100644 --- a/lib/rubocop/cop/performance/detect.rb +++ b/lib/rubocop/cop/performance/detect.rb @@ -7,6 +7,11 @@ module Performance # chained to `select`, `find_all` or `filter` and change them to use # `detect` instead. # + # @safety + # This cop is unsafe because is has known compatibility issues with `ActiveRecord` and other + # frameworks. `ActiveRecord` does not implement a `detect` method and `find` has its own + # meaning. Correcting `ActiveRecord` methods with this cop should be considered unsafe. + # # @example # # bad # [].select { |item| true }.first diff --git a/lib/rubocop/cop/performance/end_with.rb b/lib/rubocop/cop/performance/end_with.rb index 155c48f8a2..b9b19fff12 100644 --- a/lib/rubocop/cop/performance/end_with.rb +++ b/lib/rubocop/cop/performance/end_with.rb @@ -9,6 +9,11 @@ module Performance # `end$` is unsafe as it will behave incompatible with `end_with?` # for receiver is multiline string. # + # @safety + # This will change to a new method call which isn't guaranteed to be on the + # object. Switching these methods has to be done with knowledge of the types + # of the variables which rubocop doesn't have. + # # @example # # bad # 'abc'.match?(/bc\Z/) diff --git a/lib/rubocop/cop/performance/inefficient_hash_search.rb b/lib/rubocop/cop/performance/inefficient_hash_search.rb index a5c47def6c..cf6cf6e432 100644 --- a/lib/rubocop/cop/performance/inefficient_hash_search.rb +++ b/lib/rubocop/cop/performance/inefficient_hash_search.rb @@ -15,6 +15,9 @@ module Performance # both perform an O(n) search through all of the values, calling `values` # allocates a new array while using `value?` does not. # + # @safety + # This cop is unsafe because it can't tell whether the receiver is a hash object. + # # @example # # bad # { a: 1, b: 2 }.keys.include?(:a) diff --git a/lib/rubocop/cop/performance/map_compact.rb b/lib/rubocop/cop/performance/map_compact.rb index 4082319601..6cba8a07e1 100644 --- a/lib/rubocop/cop/performance/map_compact.rb +++ b/lib/rubocop/cop/performance/map_compact.rb @@ -6,8 +6,10 @@ module Performance # In Ruby 2.7, `Enumerable#filter_map` has been added. # # This cop identifies places where `map { ... }.compact` can be replaced by `filter_map`. - # It is marked as unsafe auto-correction by default because `map { ... }.compact` - # that is not compatible with `filter_map`. + # + # @safety + # This cop's autocorrection is unsafe because `map { ... }.compact` that is not + # compatible with `filter_map`. # # [source,ruby] # ---- diff --git a/lib/rubocop/cop/performance/open_struct.rb b/lib/rubocop/cop/performance/open_struct.rb index 6709b68e14..1395bd899c 100644 --- a/lib/rubocop/cop/performance/open_struct.rb +++ b/lib/rubocop/cop/performance/open_struct.rb @@ -11,6 +11,10 @@ module Performance # especially in case of single-threaded # applications with multiple `OpenStruct` instantiations. # + # @safety + # This cop is unsafe because `OpenStruct.new` and `Struct.new` + # are not equivalent. + # # @example # # bad # class MyClass diff --git a/lib/rubocop/cop/performance/range_include.rb b/lib/rubocop/cop/performance/range_include.rb index e39dcc2400..8308ac3aa4 100644 --- a/lib/rubocop/cop/performance/range_include.rb +++ b/lib/rubocop/cop/performance/range_include.rb @@ -9,8 +9,9 @@ module Performance # end points of the `Range`. In a great majority of cases, this is what # is wanted. # - # This cop is `Safe: false` by default because `Range#include?` (or `Range#member?`) and - # `Range#cover?` are not equivalent behaviour. + # @safety + # This cop is unsafe because `Range#include?` (or `Range#member?`) and `Range#cover?` + # are not equivalent behaviour. # # @example # # bad diff --git a/lib/rubocop/cop/performance/redundant_equality_comparison_block.rb b/lib/rubocop/cop/performance/redundant_equality_comparison_block.rb index 983292f6e6..eb233388d3 100644 --- a/lib/rubocop/cop/performance/redundant_equality_comparison_block.rb +++ b/lib/rubocop/cop/performance/redundant_equality_comparison_block.rb @@ -9,8 +9,9 @@ module Performance # By default, `Object#===` behaves the same as `Object#==`, but this # behavior is appropriately overridden in subclass. For example, # `Range#===` returns `true` when argument is within the range. - # Therefore, It is marked as unsafe by default because `===` and `==` - # do not always behave the same. + # + # @safety + # This cop is unsafe because `===` and `==` do not always behave the same. # # @example # # bad diff --git a/lib/rubocop/cop/performance/redundant_merge.rb b/lib/rubocop/cop/performance/redundant_merge.rb index d091f669ba..6bc5458e51 100644 --- a/lib/rubocop/cop/performance/redundant_merge.rb +++ b/lib/rubocop/cop/performance/redundant_merge.rb @@ -8,8 +8,9 @@ module Performance # You can set the maximum number of key-value pairs to consider # an offense with `MaxKeyValuePairs`. # - # This cop is marked as unsafe because RuboCop cannot determine if the - # receiver of `merge!` is actually a hash or not. + # @safety + # This cop is unsafe because RuboCop cannot determine if the + # receiver of `merge!` is actually a hash or not. # # @example # # bad diff --git a/lib/rubocop/cop/performance/start_with.rb b/lib/rubocop/cop/performance/start_with.rb index c55ac7af5c..d813ca5100 100644 --- a/lib/rubocop/cop/performance/start_with.rb +++ b/lib/rubocop/cop/performance/start_with.rb @@ -9,6 +9,11 @@ module Performance # `^start` is unsafe as it will behave incompatible with `start_with?` # for receiver is multiline string. # + # @safety + # This will change to a new method call which isn't guaranteed to be on the + # object. Switching these methods has to be done with knowledge of the types + # of the variables which rubocop doesn't have. + # # @example # # bad # 'abc'.match?(/\Aab/) diff --git a/lib/rubocop/cop/performance/string_include.rb b/lib/rubocop/cop/performance/string_include.rb index c549300aff..415e02c929 100644 --- a/lib/rubocop/cop/performance/string_include.rb +++ b/lib/rubocop/cop/performance/string_include.rb @@ -6,7 +6,8 @@ module Performance # This cop identifies unnecessary use of a regex where # `String#include?` would suffice. # - # This cop's offenses are not safe to auto-correct if a receiver is nil. + # @safety + # This cop's offenses are not safe to auto-correct if a receiver is nil. # # @example # # bad diff --git a/lib/rubocop/cop/performance/times_map.rb b/lib/rubocop/cop/performance/times_map.rb index 907983a04c..6e297893cd 100644 --- a/lib/rubocop/cop/performance/times_map.rb +++ b/lib/rubocop/cop/performance/times_map.rb @@ -7,6 +7,18 @@ module Performance # In most cases such calls can be replaced # with an explicit array creation. # + # @safety + # This cop's autocorrection is unsafe because `Integer#times` does nothing if receiver is 0 + # or less. However, `Array.new` raises an error if argument is less than 0. + # + # For example: + # + # [source,ruby] + # ---- + # -1.times{} # does nothing + # Array.new(-1) # ArgumentError: negative array size + # ---- + # # @example # # bad # 9.times.map do |i| diff --git a/lib/rubocop/cop/performance/unfreeze_string.rb b/lib/rubocop/cop/performance/unfreeze_string.rb index 76119f2760..7860c269c7 100644 --- a/lib/rubocop/cop/performance/unfreeze_string.rb +++ b/lib/rubocop/cop/performance/unfreeze_string.rb @@ -7,11 +7,11 @@ module Performance # literal instead of `String#dup` and `String.new`. # Unary plus operator is faster than `String#dup`. # - # NOTE: `String.new` (without operator) is not exactly the same as `+''`. - # These differ in encoding. `String.new.encoding` is always `ASCII-8BIT`. - # However, `(+'').encoding` is the same as script encoding(e.g. `UTF-8`). - # Therefore, auto-correction is unsafe. - # So, if you expect `ASCII-8BIT` encoding, disable this cop. + # @safety + # This cop's autocorrection is unsafe because `String.new` (without operator) is not + # exactly the same as `+''`. These differ in encoding. `String.new.encoding` is always + # `ASCII-8BIT`. However, `(+'').encoding` is the same as script encoding(e.g. `UTF-8`). + # if you expect `ASCII-8BIT` encoding, disable this cop. # # @example # # bad