rubocop 0.48.1 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (851) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +84 -50
  4. data/assets/output.html.erb +1 -1
  5. data/config/default.yml +4311 -902
  6. data/config/obsoletion.yml +200 -0
  7. data/exe/rubocop +15 -0
  8. data/lib/rubocop.rb +679 -481
  9. data/lib/rubocop/ast_aliases.rb +8 -0
  10. data/lib/rubocop/cached_data.rb +5 -10
  11. data/lib/rubocop/cli.rb +73 -129
  12. data/lib/rubocop/cli/command.rb +22 -0
  13. data/lib/rubocop/cli/command/auto_genenerate_config.rb +132 -0
  14. data/lib/rubocop/cli/command/base.rb +35 -0
  15. data/lib/rubocop/cli/command/execute_runner.rb +100 -0
  16. data/lib/rubocop/cli/command/init_dotfile.rb +44 -0
  17. data/lib/rubocop/cli/command/show_cops.rb +74 -0
  18. data/lib/rubocop/cli/command/suggest_extensions.rb +81 -0
  19. data/lib/rubocop/cli/command/version.rb +18 -0
  20. data/lib/rubocop/cli/environment.rb +22 -0
  21. data/lib/rubocop/comment_config.rb +80 -78
  22. data/lib/rubocop/config.rb +124 -259
  23. data/lib/rubocop/config_loader.rb +182 -133
  24. data/lib/rubocop/config_loader_resolver.rb +237 -14
  25. data/lib/rubocop/config_obsoletion.rb +103 -0
  26. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  27. data/lib/rubocop/config_obsoletion/changed_parameter.rb +21 -0
  28. data/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  29. data/lib/rubocop/config_obsoletion/extracted_cop.rb +44 -0
  30. data/lib/rubocop/config_obsoletion/parameter_rule.rb +44 -0
  31. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  32. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  33. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  34. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  35. data/lib/rubocop/config_regeneration.rb +33 -0
  36. data/lib/rubocop/config_store.rb +31 -7
  37. data/lib/rubocop/config_validator.rb +234 -0
  38. data/lib/rubocop/cop/autocorrect_logic.rb +83 -4
  39. data/lib/rubocop/cop/badge.rb +16 -32
  40. data/lib/rubocop/cop/base.rb +450 -0
  41. data/lib/rubocop/cop/bundler/duplicated_gem.rb +44 -16
  42. data/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  43. data/lib/rubocop/cop/bundler/gem_version.rb +99 -0
  44. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +62 -0
  45. data/lib/rubocop/cop/bundler/ordered_gems.rb +18 -60
  46. data/lib/rubocop/cop/commissioner.rb +119 -68
  47. data/lib/rubocop/cop/cop.rb +93 -169
  48. data/lib/rubocop/cop/corrector.rb +81 -98
  49. data/lib/rubocop/cop/correctors/alignment_corrector.rb +136 -0
  50. data/lib/rubocop/cop/correctors/condition_corrector.rb +25 -0
  51. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +51 -0
  52. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +25 -0
  53. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +72 -0
  54. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  55. data/lib/rubocop/cop/correctors/line_break_corrector.rb +58 -0
  56. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +97 -0
  57. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +42 -0
  58. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +28 -0
  59. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +106 -0
  60. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +27 -0
  61. data/lib/rubocop/cop/correctors/space_corrector.rb +46 -0
  62. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +23 -0
  63. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +40 -0
  64. data/lib/rubocop/cop/documentation.rb +22 -0
  65. data/lib/rubocop/cop/exclude_limit.rb +26 -0
  66. data/lib/rubocop/cop/force.rb +3 -1
  67. data/lib/rubocop/cop/gemspec/date_assignment.rb +57 -0
  68. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +105 -0
  69. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +102 -0
  70. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +113 -0
  71. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +57 -0
  72. data/lib/rubocop/cop/generator.rb +212 -0
  73. data/lib/rubocop/cop/generator/configuration_injector.rb +65 -0
  74. data/lib/rubocop/cop/generator/require_file_injector.rb +75 -0
  75. data/lib/rubocop/cop/ignored_node.rb +1 -3
  76. data/lib/rubocop/cop/internal_affairs.rb +15 -0
  77. data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
  78. data/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
  79. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
  80. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  81. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +151 -0
  82. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +41 -0
  83. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +56 -0
  84. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
  85. data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +65 -0
  86. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +53 -0
  87. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +76 -0
  88. data/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
  89. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  90. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +100 -0
  91. data/lib/rubocop/cop/layout/argument_alignment.rb +110 -0
  92. data/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  93. data/lib/rubocop/cop/{style/indent_assignment.rb → layout/assignment_indentation.rb} +21 -7
  94. data/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
  95. data/lib/rubocop/cop/{lint → layout}/block_alignment.rb +67 -60
  96. data/lib/rubocop/cop/layout/block_end_newline.rb +60 -0
  97. data/lib/rubocop/cop/layout/case_indentation.rb +203 -0
  98. data/lib/rubocop/cop/layout/class_structure.rb +324 -0
  99. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +124 -0
  100. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +191 -0
  101. data/lib/rubocop/cop/layout/comment_indentation.rb +137 -0
  102. data/lib/rubocop/cop/{lint → layout}/condition_position.rb +20 -8
  103. data/lib/rubocop/cop/{lint → layout}/def_end_alignment.rb +19 -24
  104. data/lib/rubocop/cop/{style → layout}/dot_position.rb +47 -27
  105. data/lib/rubocop/cop/layout/else_alignment.rb +156 -0
  106. data/lib/rubocop/cop/layout/empty_comment.rb +151 -0
  107. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +174 -0
  108. data/lib/rubocop/cop/{style → layout}/empty_line_after_magic_comment.rb +18 -17
  109. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  110. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +252 -0
  111. data/lib/rubocop/cop/{style → layout}/empty_lines.rb +26 -15
  112. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +206 -0
  113. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +103 -0
  114. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  115. data/lib/rubocop/cop/{style → layout}/empty_lines_around_begin_body.rb +7 -7
  116. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +38 -0
  117. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +85 -0
  118. data/lib/rubocop/cop/{style → layout}/empty_lines_around_exception_handling_keywords.rb +16 -17
  119. data/lib/rubocop/cop/{style → layout}/empty_lines_around_method_body.rb +10 -9
  120. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +59 -0
  121. data/lib/rubocop/cop/{lint → layout}/end_alignment.rb +59 -33
  122. data/lib/rubocop/cop/layout/end_of_line.rb +92 -0
  123. data/lib/rubocop/cop/layout/extra_spacing.rb +182 -0
  124. data/lib/rubocop/cop/layout/first_argument_indentation.rb +276 -0
  125. data/lib/rubocop/cop/layout/first_array_element_indentation.rb +173 -0
  126. data/lib/rubocop/cop/{style → layout}/first_array_element_line_break.rb +5 -5
  127. data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +200 -0
  128. data/lib/rubocop/cop/{style → layout}/first_hash_element_line_break.rb +4 -4
  129. data/lib/rubocop/cop/{style → layout}/first_method_argument_line_break.rb +9 -10
  130. data/lib/rubocop/cop/{style → layout}/first_method_parameter_line_break.rb +7 -7
  131. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  132. data/lib/rubocop/cop/layout/hash_alignment.rb +382 -0
  133. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +305 -0
  134. data/lib/rubocop/cop/layout/heredoc_indentation.rb +172 -0
  135. data/lib/rubocop/cop/layout/indentation_consistency.rb +205 -0
  136. data/lib/rubocop/cop/layout/indentation_style.rb +110 -0
  137. data/lib/rubocop/cop/{style → layout}/indentation_width.rb +138 -66
  138. data/lib/rubocop/cop/layout/initial_indentation.rb +55 -0
  139. data/lib/rubocop/cop/layout/leading_comment_space.rb +121 -0
  140. data/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  141. data/lib/rubocop/cop/layout/line_length.rb +267 -0
  142. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  143. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +35 -0
  144. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +117 -0
  145. data/lib/rubocop/cop/layout/multiline_block_layout.rb +159 -0
  146. data/lib/rubocop/cop/{style → layout}/multiline_hash_brace_layout.rb +53 -19
  147. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +46 -0
  148. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +47 -0
  149. data/lib/rubocop/cop/{style → layout}/multiline_method_call_brace_layout.rb +69 -35
  150. data/lib/rubocop/cop/{style → layout}/multiline_method_call_indentation.rb +57 -41
  151. data/lib/rubocop/cop/{style → layout}/multiline_method_definition_brace_layout.rb +84 -38
  152. data/lib/rubocop/cop/{style → layout}/multiline_operation_indentation.rb +51 -11
  153. data/lib/rubocop/cop/layout/parameter_alignment.rb +119 -0
  154. data/lib/rubocop/cop/layout/redundant_line_break.rb +137 -0
  155. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +198 -0
  156. data/lib/rubocop/cop/layout/single_line_block_chain.rb +53 -0
  157. data/lib/rubocop/cop/{style → layout}/space_after_colon.rb +19 -10
  158. data/lib/rubocop/cop/layout/space_after_comma.rb +32 -0
  159. data/lib/rubocop/cop/layout/space_after_method_name.rb +39 -0
  160. data/lib/rubocop/cop/{style → layout}/space_after_not.rb +14 -14
  161. data/lib/rubocop/cop/{style → layout}/space_after_semicolon.rb +12 -4
  162. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +162 -0
  163. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +88 -0
  164. data/lib/rubocop/cop/{style → layout}/space_around_keyword.rb +69 -37
  165. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  166. data/lib/rubocop/cop/layout/space_around_operators.rb +241 -0
  167. data/lib/rubocop/cop/layout/space_before_block_braces.rb +152 -0
  168. data/lib/rubocop/cop/layout/space_before_brackets.rb +65 -0
  169. data/lib/rubocop/cop/layout/space_before_comma.rb +29 -0
  170. data/lib/rubocop/cop/layout/space_before_comment.rb +34 -0
  171. data/lib/rubocop/cop/{style → layout}/space_before_first_arg.rb +24 -17
  172. data/lib/rubocop/cop/layout/space_before_semicolon.rb +24 -0
  173. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +72 -0
  174. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +222 -0
  175. data/lib/rubocop/cop/{style → layout}/space_inside_array_percent_literal.rb +10 -20
  176. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +243 -0
  177. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +181 -0
  178. data/lib/rubocop/cop/layout/space_inside_parens.rb +130 -0
  179. data/lib/rubocop/cop/{style → layout}/space_inside_percent_literal_delimiters.rb +16 -20
  180. data/lib/rubocop/cop/{style → layout}/space_inside_range_literal.rb +8 -17
  181. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +139 -0
  182. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +64 -0
  183. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
  184. data/lib/rubocop/cop/layout/trailing_whitespace.rb +101 -0
  185. data/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  186. data/lib/rubocop/cop/legacy/corrector.rb +27 -0
  187. data/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  188. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +30 -22
  189. data/lib/rubocop/cop/lint/ambiguous_operator.rb +57 -9
  190. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +37 -7
  191. data/lib/rubocop/cop/lint/assignment_in_condition.rb +40 -23
  192. data/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  193. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +55 -0
  194. data/lib/rubocop/cop/lint/boolean_symbol.rb +58 -0
  195. data/lib/rubocop/cop/lint/circular_argument_reference.rb +5 -16
  196. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  197. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  198. data/lib/rubocop/cop/lint/debugger.rb +63 -33
  199. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +101 -41
  200. data/lib/rubocop/cop/lint/deprecated_constants.rb +80 -0
  201. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +148 -0
  202. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +87 -0
  203. data/lib/rubocop/cop/lint/duplicate_branch.rb +154 -0
  204. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +4 -14
  205. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  206. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +3 -5
  207. data/lib/rubocop/cop/lint/duplicate_methods.rb +108 -24
  208. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +77 -0
  209. data/lib/rubocop/cop/lint/duplicate_require.rb +47 -0
  210. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  211. data/lib/rubocop/cop/lint/each_with_object_argument.rb +9 -4
  212. data/lib/rubocop/cop/lint/else_layout.rb +33 -8
  213. data/lib/rubocop/cop/lint/empty_block.rb +98 -0
  214. data/lib/rubocop/cop/lint/empty_class.rb +93 -0
  215. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  216. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -8
  217. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  218. data/lib/rubocop/cop/lint/empty_file.rb +48 -0
  219. data/lib/rubocop/cop/lint/empty_in_pattern.rb +62 -0
  220. data/lib/rubocop/cop/lint/empty_interpolation.rb +8 -11
  221. data/lib/rubocop/cop/lint/empty_when.rb +32 -9
  222. data/lib/rubocop/cop/lint/ensure_return.rb +31 -15
  223. data/lib/rubocop/cop/lint/erb_new_arguments.rb +162 -0
  224. data/lib/rubocop/cop/lint/flip_flop.rb +38 -0
  225. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  226. data/lib/rubocop/cop/lint/float_out_of_range.rb +6 -7
  227. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +93 -81
  228. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +38 -0
  229. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +154 -0
  230. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  231. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +27 -21
  232. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +44 -66
  233. data/lib/rubocop/cop/lint/inherit_exception.rb +43 -21
  234. data/lib/rubocop/cop/lint/interpolation_check.rb +53 -0
  235. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +44 -0
  236. data/lib/rubocop/cop/lint/{literal_in_condition.rb → literal_as_condition.rb} +48 -28
  237. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +71 -20
  238. data/lib/rubocop/cop/lint/loop.rb +31 -9
  239. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +81 -0
  240. data/lib/rubocop/cop/lint/missing_super.rb +101 -0
  241. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +36 -0
  242. data/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  243. data/lib/rubocop/cop/lint/nested_method_definition.rb +23 -28
  244. data/lib/rubocop/cop/lint/nested_percent_literal.rb +63 -0
  245. data/lib/rubocop/cop/lint/next_without_accumulator.rb +5 -4
  246. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  247. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +169 -0
  248. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +20 -19
  249. data/lib/rubocop/cop/lint/number_conversion.rb +155 -0
  250. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
  251. data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +39 -0
  252. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +83 -0
  253. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +96 -0
  254. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +40 -17
  255. data/lib/rubocop/cop/lint/percent_string_array.rb +18 -34
  256. data/lib/rubocop/cop/lint/percent_symbol_array.rb +19 -17
  257. data/lib/rubocop/cop/lint/raise_exception.rb +87 -0
  258. data/lib/rubocop/cop/lint/rand_one.rb +13 -6
  259. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +262 -0
  260. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +128 -0
  261. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +50 -0
  262. data/lib/rubocop/cop/lint/redundant_require_statement.rb +49 -0
  263. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +77 -0
  264. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +209 -0
  265. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +52 -0
  266. data/lib/rubocop/cop/lint/redundant_with_index.rb +77 -0
  267. data/lib/rubocop/cop/lint/redundant_with_object.rb +78 -0
  268. data/lib/rubocop/cop/lint/regexp_as_condition.rb +31 -0
  269. data/lib/rubocop/cop/lint/require_parentheses.rb +11 -8
  270. data/lib/rubocop/cop/lint/rescue_exception.rb +5 -5
  271. data/lib/rubocop/cop/lint/rescue_type.rb +88 -0
  272. data/lib/rubocop/cop/lint/return_in_void_context.rb +71 -0
  273. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +22 -30
  274. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +92 -0
  275. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  276. data/lib/rubocop/cop/lint/script_permission.rb +73 -0
  277. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  278. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
  279. data/lib/rubocop/cop/lint/shadowed_argument.rb +176 -0
  280. data/lib/rubocop/cop/lint/shadowed_exception.rb +77 -43
  281. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +24 -10
  282. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  283. data/lib/rubocop/cop/lint/suppressed_exception.rb +132 -0
  284. data/lib/rubocop/cop/lint/symbol_conversion.rb +178 -0
  285. data/lib/rubocop/cop/lint/syntax.rb +17 -32
  286. data/lib/rubocop/cop/lint/to_enum_arguments.rb +89 -0
  287. data/lib/rubocop/cop/lint/to_json.rb +49 -0
  288. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  289. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  290. data/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  291. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +31 -13
  292. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +85 -0
  293. data/lib/rubocop/cop/lint/unified_integer.rb +10 -10
  294. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  295. data/lib/rubocop/cop/lint/unreachable_code.rb +57 -12
  296. data/lib/rubocop/cop/lint/unreachable_loop.rb +196 -0
  297. data/lib/rubocop/cop/lint/unused_block_argument.rb +41 -14
  298. data/lib/rubocop/cop/lint/unused_method_argument.rb +70 -14
  299. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +79 -0
  300. data/lib/rubocop/cop/lint/uri_regexp.rb +38 -0
  301. data/lib/rubocop/cop/lint/useless_access_modifier.rb +120 -59
  302. data/lib/rubocop/cop/lint/useless_assignment.rb +13 -20
  303. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +10 -11
  304. data/lib/rubocop/cop/lint/useless_method_definition.rb +68 -0
  305. data/lib/rubocop/cop/lint/useless_setter_call.rb +30 -22
  306. data/lib/rubocop/cop/lint/useless_times.rb +109 -0
  307. data/lib/rubocop/cop/lint/void.rb +82 -50
  308. data/lib/rubocop/cop/message_annotator.rb +48 -24
  309. data/lib/rubocop/cop/metrics/abc_size.rb +29 -20
  310. data/lib/rubocop/cop/metrics/block_length.rb +54 -6
  311. data/lib/rubocop/cop/metrics/block_nesting.rb +7 -11
  312. data/lib/rubocop/cop/metrics/class_length.rb +44 -3
  313. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +38 -5
  314. data/lib/rubocop/cop/metrics/method_length.rb +43 -6
  315. data/lib/rubocop/cop/metrics/module_length.rb +35 -3
  316. data/lib/rubocop/cop/metrics/parameter_lists.rb +80 -8
  317. data/lib/rubocop/cop/metrics/perceived_complexity.rb +8 -10
  318. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +145 -0
  319. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +160 -0
  320. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  321. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  322. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  323. data/lib/rubocop/cop/migration/department_name.rb +79 -0
  324. data/lib/rubocop/cop/mixin/alignment.rb +81 -0
  325. data/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  326. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  327. data/lib/rubocop/cop/mixin/annotation_comment.rb +6 -0
  328. data/lib/rubocop/cop/mixin/array_min_size.rb +57 -0
  329. data/lib/rubocop/cop/mixin/array_syntax.rb +3 -1
  330. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  331. data/lib/rubocop/cop/mixin/check_assignment.rb +13 -9
  332. data/lib/rubocop/cop/mixin/check_line_breakable.rb +214 -0
  333. data/lib/rubocop/cop/mixin/code_length.rb +33 -6
  334. data/lib/rubocop/cop/mixin/comments_help.rb +42 -0
  335. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +20 -18
  336. data/lib/rubocop/cop/mixin/configurable_formatting.rb +5 -13
  337. data/lib/rubocop/cop/mixin/configurable_max.rb +7 -2
  338. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  339. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  340. data/lib/rubocop/cop/mixin/def_node.rb +12 -8
  341. data/lib/rubocop/cop/mixin/documentation_comment.rb +13 -10
  342. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +45 -34
  343. data/lib/rubocop/cop/mixin/empty_parameter.rb +25 -0
  344. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +29 -33
  345. data/lib/rubocop/cop/mixin/enforce_superclass.rb +38 -0
  346. data/lib/rubocop/cop/mixin/first_element_line_break.rb +17 -12
  347. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +35 -10
  348. data/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  349. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +55 -16
  350. data/lib/rubocop/cop/mixin/hash_transform_method.rb +183 -0
  351. data/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  352. data/lib/rubocop/cop/mixin/ignored_methods.rb +52 -0
  353. data/lib/rubocop/cop/mixin/ignored_pattern.rb +3 -1
  354. data/lib/rubocop/cop/mixin/integer_node.rb +3 -1
  355. data/lib/rubocop/cop/mixin/interpolation.rb +25 -0
  356. data/lib/rubocop/cop/mixin/line_length_help.rb +90 -0
  357. data/lib/rubocop/cop/mixin/match_range.rb +6 -5
  358. data/lib/rubocop/cop/mixin/method_complexity.rb +58 -11
  359. data/lib/rubocop/cop/mixin/method_preference.rb +1 -1
  360. data/lib/rubocop/cop/mixin/min_body_length.rb +3 -1
  361. data/lib/rubocop/cop/mixin/{array_hash_indentation.rb → multiline_element_indentation.rb} +11 -6
  362. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  363. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +108 -61
  364. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +31 -42
  365. data/lib/rubocop/cop/mixin/negative_conditional.rb +9 -18
  366. data/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  367. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +58 -0
  368. data/lib/rubocop/cop/mixin/parentheses.rb +3 -9
  369. data/lib/rubocop/cop/mixin/percent_array.rb +57 -0
  370. data/lib/rubocop/cop/mixin/percent_literal.rb +3 -71
  371. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +95 -9
  372. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +50 -0
  373. data/lib/rubocop/cop/mixin/range_help.rb +128 -0
  374. data/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  375. data/lib/rubocop/cop/mixin/rescue_node.rb +15 -8
  376. data/lib/rubocop/cop/mixin/safe_assignment.rb +9 -2
  377. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +15 -16
  378. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +19 -18
  379. data/lib/rubocop/cop/mixin/statement_modifier.rb +50 -25
  380. data/lib/rubocop/cop/mixin/string_help.rb +6 -1
  381. data/lib/rubocop/cop/mixin/string_literals_help.rb +5 -17
  382. data/lib/rubocop/cop/mixin/surrounding_space.rb +113 -23
  383. data/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  384. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  385. data/lib/rubocop/cop/mixin/trailing_body.rb +25 -0
  386. data/lib/rubocop/cop/mixin/trailing_comma.rb +100 -52
  387. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +104 -0
  388. data/lib/rubocop/cop/mixin/unused_argument.rb +6 -19
  389. data/lib/rubocop/cop/mixin/visibility_help.rb +37 -0
  390. data/lib/rubocop/cop/naming/accessor_method_name.rb +71 -0
  391. data/lib/rubocop/cop/naming/ascii_identifiers.rb +93 -0
  392. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
  393. data/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  394. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +43 -0
  395. data/lib/rubocop/cop/naming/constant_name.rb +84 -0
  396. data/lib/rubocop/cop/{style → naming}/file_name.rb +79 -48
  397. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +68 -0
  398. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  399. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +279 -0
  400. data/lib/rubocop/cop/naming/method_name.rb +81 -0
  401. data/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  402. data/lib/rubocop/cop/naming/predicate_name.rb +105 -0
  403. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +156 -0
  404. data/lib/rubocop/cop/naming/variable_name.rb +54 -0
  405. data/lib/rubocop/cop/naming/variable_number.rb +146 -0
  406. data/lib/rubocop/cop/offense.rb +74 -23
  407. data/lib/rubocop/cop/registry.rb +140 -23
  408. data/lib/rubocop/cop/security/eval.rb +14 -5
  409. data/lib/rubocop/cop/security/json_load.rb +14 -12
  410. data/lib/rubocop/cop/security/marshal_load.rb +9 -7
  411. data/lib/rubocop/cop/security/open.rb +75 -0
  412. data/lib/rubocop/cop/security/yaml_load.rb +12 -10
  413. data/lib/rubocop/cop/severity.rb +5 -14
  414. data/lib/rubocop/cop/style/access_modifier_declarations.rb +136 -0
  415. data/lib/rubocop/cop/style/accessor_grouping.rb +150 -0
  416. data/lib/rubocop/cop/style/alias.rb +86 -57
  417. data/lib/rubocop/cop/style/and_or.rb +81 -53
  418. data/lib/rubocop/cop/style/arguments_forwarding.rb +143 -0
  419. data/lib/rubocop/cop/style/array_coercion.rb +69 -0
  420. data/lib/rubocop/cop/style/array_join.rb +19 -10
  421. data/lib/rubocop/cop/style/ascii_comments.rb +31 -9
  422. data/lib/rubocop/cop/style/attr.rb +33 -13
  423. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +19 -13
  424. data/lib/rubocop/cop/style/bare_percent_literals.rb +31 -12
  425. data/lib/rubocop/cop/style/begin_block.rb +9 -3
  426. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  427. data/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  428. data/lib/rubocop/cop/style/block_comments.rb +40 -20
  429. data/lib/rubocop/cop/style/block_delimiters.rb +213 -59
  430. data/lib/rubocop/cop/style/case_equality.rb +67 -4
  431. data/lib/rubocop/cop/style/case_like_if.rb +258 -0
  432. data/lib/rubocop/cop/style/character_literal.rb +22 -15
  433. data/lib/rubocop/cop/style/class_and_module_children.rb +118 -17
  434. data/lib/rubocop/cop/style/class_check.rb +31 -17
  435. data/lib/rubocop/cop/style/class_equality_comparison.rb +67 -0
  436. data/lib/rubocop/cop/style/class_methods.rb +18 -31
  437. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  438. data/lib/rubocop/cop/style/class_vars.rb +48 -7
  439. data/lib/rubocop/cop/style/collection_compact.rb +91 -0
  440. data/lib/rubocop/cop/style/collection_methods.rb +52 -17
  441. data/lib/rubocop/cop/style/colon_method_call.rb +26 -13
  442. data/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  443. data/lib/rubocop/cop/style/combinable_loops.rb +92 -0
  444. data/lib/rubocop/cop/style/command_literal.rb +104 -42
  445. data/lib/rubocop/cop/style/comment_annotation.rb +62 -24
  446. data/lib/rubocop/cop/style/commented_keyword.rb +86 -0
  447. data/lib/rubocop/cop/style/conditional_assignment.rb +143 -182
  448. data/lib/rubocop/cop/style/constant_visibility.rb +106 -0
  449. data/lib/rubocop/cop/style/copyright.rb +42 -35
  450. data/lib/rubocop/cop/style/date_time.rb +88 -0
  451. data/lib/rubocop/cop/style/def_with_parentheses.rb +36 -13
  452. data/lib/rubocop/cop/style/dir.rb +47 -0
  453. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  454. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  455. data/lib/rubocop/cop/style/documentation.rb +114 -22
  456. data/lib/rubocop/cop/style/documentation_method.rb +56 -10
  457. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  458. data/lib/rubocop/cop/style/double_negation.rb +52 -8
  459. data/lib/rubocop/cop/style/each_for_simple_loop.rb +16 -18
  460. data/lib/rubocop/cop/style/each_with_object.rb +34 -17
  461. data/lib/rubocop/cop/style/empty_block_parameter.rb +47 -0
  462. data/lib/rubocop/cop/style/empty_case_condition.rb +32 -13
  463. data/lib/rubocop/cop/style/empty_else.rb +56 -27
  464. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +44 -0
  465. data/lib/rubocop/cop/style/empty_literal.rb +63 -33
  466. data/lib/rubocop/cop/style/empty_method.rb +37 -35
  467. data/lib/rubocop/cop/style/encoding.rb +20 -60
  468. data/lib/rubocop/cop/style/end_block.rb +15 -4
  469. data/lib/rubocop/cop/style/endless_method.rb +101 -0
  470. data/lib/rubocop/cop/style/eval_with_location.rb +237 -0
  471. data/lib/rubocop/cop/style/even_odd.rb +16 -16
  472. data/lib/rubocop/cop/style/expand_path_arguments.rb +196 -0
  473. data/lib/rubocop/cop/style/explicit_block_argument.rb +114 -0
  474. data/lib/rubocop/cop/style/exponential_notation.rb +116 -0
  475. data/lib/rubocop/cop/style/float_division.rb +143 -0
  476. data/lib/rubocop/cop/style/for.rb +49 -17
  477. data/lib/rubocop/cop/style/format_string.rb +97 -10
  478. data/lib/rubocop/cop/style/format_string_token.rb +177 -0
  479. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +155 -47
  480. data/lib/rubocop/cop/style/global_std_stream.rb +66 -0
  481. data/lib/rubocop/cop/style/global_vars.rb +16 -6
  482. data/lib/rubocop/cop/style/guard_clause.rb +69 -18
  483. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  484. data/lib/rubocop/cop/style/hash_conversion.rb +133 -0
  485. data/lib/rubocop/cop/style/hash_each_methods.rb +103 -0
  486. data/lib/rubocop/cop/style/hash_except.rb +96 -0
  487. data/lib/rubocop/cop/style/hash_like_case.rb +77 -0
  488. data/lib/rubocop/cop/style/hash_syntax.rb +99 -94
  489. data/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  490. data/lib/rubocop/cop/style/hash_transform_values.rb +92 -0
  491. data/lib/rubocop/cop/style/identical_conditional_branches.rb +53 -29
  492. data/lib/rubocop/cop/style/if_inside_else.rb +101 -11
  493. data/lib/rubocop/cop/style/if_unless_modifier.rb +162 -44
  494. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +13 -4
  495. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +122 -0
  496. data/lib/rubocop/cop/style/if_with_semicolon.rb +62 -4
  497. data/lib/rubocop/cop/style/implicit_runtime_error.rb +10 -7
  498. data/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
  499. data/lib/rubocop/cop/style/infinite_loop.rb +65 -27
  500. data/lib/rubocop/cop/style/inline_comment.rb +7 -5
  501. data/lib/rubocop/cop/style/inverse_methods.rb +99 -44
  502. data/lib/rubocop/cop/style/ip_addresses.rb +75 -0
  503. data/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
  504. data/lib/rubocop/cop/style/lambda.rb +26 -110
  505. data/lib/rubocop/cop/style/lambda_call.rb +29 -19
  506. data/lib/rubocop/cop/style/line_end_concatenation.rb +40 -34
  507. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +185 -52
  508. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +189 -0
  509. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +44 -0
  510. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +27 -18
  511. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +19 -10
  512. data/lib/rubocop/cop/style/method_def_parentheses.rb +122 -45
  513. data/lib/rubocop/cop/style/min_max.rb +64 -0
  514. data/lib/rubocop/cop/style/missing_else.rb +88 -20
  515. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
  516. data/lib/rubocop/cop/style/mixin_grouping.rb +66 -28
  517. data/lib/rubocop/cop/style/mixin_usage.rb +72 -0
  518. data/lib/rubocop/cop/style/module_function.rb +111 -26
  519. data/lib/rubocop/cop/style/multiline_block_chain.rb +21 -15
  520. data/lib/rubocop/cop/style/multiline_if_modifier.rb +8 -11
  521. data/lib/rubocop/cop/style/multiline_if_then.rb +14 -17
  522. data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +62 -0
  523. data/lib/rubocop/cop/style/multiline_memoization.rb +44 -25
  524. data/lib/rubocop/cop/style/multiline_method_signature.rb +91 -0
  525. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +45 -5
  526. data/lib/rubocop/cop/style/multiline_when_then.rb +75 -0
  527. data/lib/rubocop/cop/style/multiple_comparison.rb +157 -0
  528. data/lib/rubocop/cop/style/mutable_constant.rb +132 -18
  529. data/lib/rubocop/cop/style/negated_if.rb +33 -38
  530. data/lib/rubocop/cop/style/negated_if_else_condition.rb +128 -0
  531. data/lib/rubocop/cop/style/negated_unless.rb +88 -0
  532. data/lib/rubocop/cop/style/negated_while.rb +25 -17
  533. data/lib/rubocop/cop/style/nested_modifier.rb +36 -23
  534. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +38 -29
  535. data/lib/rubocop/cop/style/nested_ternary_operator.rb +41 -4
  536. data/lib/rubocop/cop/style/next.rb +77 -67
  537. data/lib/rubocop/cop/style/nil_comparison.rb +62 -14
  538. data/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  539. data/lib/rubocop/cop/style/non_nil_check.rb +100 -63
  540. data/lib/rubocop/cop/style/not.rb +38 -31
  541. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +47 -25
  542. data/lib/rubocop/cop/style/numeric_literals.rb +40 -35
  543. data/lib/rubocop/cop/style/numeric_predicate.rb +33 -43
  544. data/lib/rubocop/cop/style/one_line_conditional.rb +100 -28
  545. data/lib/rubocop/cop/style/option_hash.rb +21 -25
  546. data/lib/rubocop/cop/style/optional_arguments.rb +4 -11
  547. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  548. data/lib/rubocop/cop/style/or_assignment.rb +97 -0
  549. data/lib/rubocop/cop/style/parallel_assignment.rb +42 -48
  550. data/lib/rubocop/cop/style/parentheses_around_condition.rb +76 -14
  551. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +42 -23
  552. data/lib/rubocop/cop/style/percent_q_literals.rb +31 -13
  553. data/lib/rubocop/cop/style/perl_backrefs.rb +91 -16
  554. data/lib/rubocop/cop/style/preferred_hash_methods.rb +15 -24
  555. data/lib/rubocop/cop/style/proc.rb +18 -10
  556. data/lib/rubocop/cop/style/quoted_symbols.rb +105 -0
  557. data/lib/rubocop/cop/style/raise_args.rb +53 -46
  558. data/lib/rubocop/cop/style/random_with_offset.rb +153 -0
  559. data/lib/rubocop/cop/style/redundant_argument.rb +85 -0
  560. data/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
  561. data/lib/rubocop/cop/style/redundant_begin.rb +119 -9
  562. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +17 -11
  563. data/lib/rubocop/cop/style/redundant_condition.rb +137 -0
  564. data/lib/rubocop/cop/style/redundant_conditional.rb +96 -0
  565. data/lib/rubocop/cop/style/redundant_exception.rb +28 -18
  566. data/lib/rubocop/cop/style/redundant_fetch_block.rb +115 -0
  567. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +52 -0
  568. data/lib/rubocop/cop/style/redundant_freeze.rb +37 -13
  569. data/lib/rubocop/cop/style/redundant_interpolation.rb +103 -0
  570. data/lib/rubocop/cop/style/redundant_parentheses.rb +99 -54
  571. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +39 -26
  572. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +104 -0
  573. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +118 -0
  574. data/lib/rubocop/cop/style/redundant_return.rb +109 -59
  575. data/lib/rubocop/cop/style/redundant_self.rb +75 -50
  576. data/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
  577. data/lib/rubocop/cop/style/redundant_sort.rb +160 -0
  578. data/lib/rubocop/cop/{performance → style}/redundant_sort_by.rb +15 -13
  579. data/lib/rubocop/cop/style/regexp_literal.rb +142 -43
  580. data/lib/rubocop/cop/style/rescue_modifier.rb +77 -14
  581. data/lib/rubocop/cop/style/rescue_standard_error.rb +126 -0
  582. data/lib/rubocop/cop/style/return_nil.rb +94 -0
  583. data/lib/rubocop/cop/style/safe_navigation.rb +193 -58
  584. data/lib/rubocop/cop/{performance → style}/sample.rb +29 -26
  585. data/lib/rubocop/cop/style/self_assignment.rb +24 -16
  586. data/lib/rubocop/cop/style/semicolon.rb +48 -17
  587. data/lib/rubocop/cop/style/send.rb +15 -7
  588. data/lib/rubocop/cop/style/signal_exception.rb +134 -27
  589. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  590. data/lib/rubocop/cop/style/single_line_block_params.rb +72 -23
  591. data/lib/rubocop/cop/style/single_line_methods.rb +95 -37
  592. data/lib/rubocop/cop/style/slicing_with_range.rb +38 -0
  593. data/lib/rubocop/cop/style/sole_nested_conditional.rb +176 -0
  594. data/lib/rubocop/cop/style/special_global_vars.rb +80 -58
  595. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +35 -69
  596. data/lib/rubocop/cop/style/static_class.rb +97 -0
  597. data/lib/rubocop/cop/style/stderr_puts.rb +57 -0
  598. data/lib/rubocop/cop/style/string_chars.rb +39 -0
  599. data/lib/rubocop/cop/style/string_concatenation.rb +142 -0
  600. data/lib/rubocop/cop/style/string_hash_keys.rb +51 -0
  601. data/lib/rubocop/cop/style/string_literals.rb +44 -13
  602. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +24 -3
  603. data/lib/rubocop/cop/style/string_methods.rb +17 -15
  604. data/lib/rubocop/cop/{performance/lstrip_rstrip.rb → style/strip.rb} +18 -17
  605. data/lib/rubocop/cop/style/struct_inheritance.rb +45 -9
  606. data/lib/rubocop/cop/style/swap_values.rb +108 -0
  607. data/lib/rubocop/cop/style/symbol_array.rb +56 -46
  608. data/lib/rubocop/cop/style/symbol_literal.rb +6 -10
  609. data/lib/rubocop/cop/style/symbol_proc.rb +63 -78
  610. data/lib/rubocop/cop/style/ternary_parentheses.rb +95 -77
  611. data/lib/rubocop/cop/style/top_level_method_definition.rb +83 -0
  612. data/lib/rubocop/cop/style/trailing_body_on_class.rb +40 -0
  613. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +55 -0
  614. data/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  615. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +69 -27
  616. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
  617. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +86 -0
  618. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
  619. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +65 -0
  620. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +79 -40
  621. data/lib/rubocop/cop/style/trivial_accessors.rb +158 -82
  622. data/lib/rubocop/cop/style/unless_else.rb +25 -13
  623. data/lib/rubocop/cop/style/unless_logical_operators.rb +105 -0
  624. data/lib/rubocop/cop/style/unpack_first.rb +59 -0
  625. data/lib/rubocop/cop/style/variable_interpolation.rb +26 -25
  626. data/lib/rubocop/cop/style/when_then.rb +20 -7
  627. data/lib/rubocop/cop/style/while_until_do.rb +31 -18
  628. data/lib/rubocop/cop/style/while_until_modifier.rb +36 -24
  629. data/lib/rubocop/cop/style/word_array.rb +40 -91
  630. data/lib/rubocop/cop/style/yoda_condition.rb +155 -0
  631. data/lib/rubocop/cop/style/zero_length_predicate.rb +60 -31
  632. data/lib/rubocop/cop/team.rb +171 -105
  633. data/lib/rubocop/cop/util.rb +44 -194
  634. data/lib/rubocop/cop/utils/format_string.rb +133 -0
  635. data/lib/rubocop/cop/variable_force.rb +47 -51
  636. data/lib/rubocop/cop/variable_force/assignment.rb +10 -4
  637. data/lib/rubocop/cop/variable_force/branch.rb +22 -9
  638. data/lib/rubocop/cop/variable_force/branchable.rb +2 -0
  639. data/lib/rubocop/cop/variable_force/reference.rb +1 -3
  640. data/lib/rubocop/cop/variable_force/scope.rb +13 -14
  641. data/lib/rubocop/cop/variable_force/variable.rb +25 -14
  642. data/lib/rubocop/cop/variable_force/variable_table.rb +4 -3
  643. data/lib/rubocop/cops_documentation_generator.rb +270 -0
  644. data/lib/rubocop/core_ext/string.rb +23 -0
  645. data/lib/rubocop/directive_comment.rb +96 -0
  646. data/lib/rubocop/error.rb +24 -0
  647. data/lib/rubocop/ext/processed_source.rb +18 -0
  648. data/lib/rubocop/ext/regexp_node.rb +87 -0
  649. data/lib/rubocop/ext/regexp_parser.rb +92 -0
  650. data/lib/rubocop/file_finder.rb +41 -0
  651. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  652. data/lib/rubocop/formatter/base_formatter.rb +3 -7
  653. data/lib/rubocop/formatter/clang_style_formatter.rb +13 -8
  654. data/lib/rubocop/formatter/disabled_config_formatter.rb +110 -58
  655. data/lib/rubocop/formatter/emacs_style_formatter.rb +24 -9
  656. data/lib/rubocop/formatter/file_list_formatter.rb +2 -1
  657. data/lib/rubocop/formatter/formatter_set.rb +20 -16
  658. data/lib/rubocop/formatter/fuubar_style_formatter.rb +2 -2
  659. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +44 -0
  660. data/lib/rubocop/formatter/html_formatter.rb +18 -15
  661. data/lib/rubocop/formatter/json_formatter.rb +17 -14
  662. data/lib/rubocop/formatter/junit_formatter.rb +93 -0
  663. data/lib/rubocop/formatter/offense_count_formatter.rb +21 -2
  664. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  665. data/lib/rubocop/formatter/progress_formatter.rb +4 -5
  666. data/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  667. data/lib/rubocop/formatter/simple_text_formatter.rb +61 -26
  668. data/lib/rubocop/formatter/tap_formatter.rb +86 -0
  669. data/lib/rubocop/formatter/worst_offenders_formatter.rb +4 -2
  670. data/lib/rubocop/lockfile.rb +40 -0
  671. data/lib/rubocop/magic_comment.rb +45 -12
  672. data/lib/rubocop/name_similarity.rb +18 -10
  673. data/lib/rubocop/options.rb +311 -140
  674. data/lib/rubocop/path_util.rb +57 -5
  675. data/lib/rubocop/platform.rb +1 -1
  676. data/lib/rubocop/rake_task.rb +27 -32
  677. data/lib/rubocop/remote_config.rb +32 -8
  678. data/lib/rubocop/result_cache.rb +89 -39
  679. data/lib/rubocop/rspec/cop_helper.rb +18 -46
  680. data/lib/rubocop/rspec/expect_offense.rb +329 -0
  681. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +1 -5
  682. data/lib/rubocop/rspec/shared_contexts.rb +92 -53
  683. data/lib/rubocop/rspec/support.rb +9 -4
  684. data/lib/rubocop/runner.rb +174 -86
  685. data/lib/rubocop/string_interpreter.rb +11 -8
  686. data/lib/rubocop/target_finder.rb +102 -93
  687. data/lib/rubocop/target_ruby.rb +264 -0
  688. data/lib/rubocop/util.rb +16 -0
  689. data/lib/rubocop/version.rb +71 -5
  690. data/lib/rubocop/yaml_duplication_checker.rb +40 -0
  691. metadata +495 -233
  692. data/bin/rubocop +0 -17
  693. data/config/disabled.yml +0 -119
  694. data/config/enabled.yml +0 -1713
  695. data/lib/rubocop/ast/builder.rb +0 -64
  696. data/lib/rubocop/ast/node.rb +0 -610
  697. data/lib/rubocop/ast/node/and_node.rb +0 -37
  698. data/lib/rubocop/ast/node/array_node.rb +0 -48
  699. data/lib/rubocop/ast/node/case_node.rb +0 -64
  700. data/lib/rubocop/ast/node/ensure_node.rb +0 -25
  701. data/lib/rubocop/ast/node/for_node.rb +0 -53
  702. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  703. data/lib/rubocop/ast/node/if_node.rb +0 -138
  704. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  705. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -23
  706. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  707. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  708. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  709. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  710. data/lib/rubocop/ast/node/or_node.rb +0 -37
  711. data/lib/rubocop/ast/node/pair_node.rb +0 -64
  712. data/lib/rubocop/ast/node/resbody_node.rb +0 -25
  713. data/lib/rubocop/ast/node/send_node.rb +0 -195
  714. data/lib/rubocop/ast/node/until_node.rb +0 -43
  715. data/lib/rubocop/ast/node/when_node.rb +0 -61
  716. data/lib/rubocop/ast/node/while_node.rb +0 -43
  717. data/lib/rubocop/ast/sexp.rb +0 -16
  718. data/lib/rubocop/ast/traversal.rb +0 -171
  719. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  720. data/lib/rubocop/cop/lint/handle_exceptions.rb +0 -56
  721. data/lib/rubocop/cop/lint/invalid_character_literal.rb +0 -41
  722. data/lib/rubocop/cop/lint/multiple_compare.rb +0 -48
  723. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +0 -58
  724. data/lib/rubocop/cop/lint/unneeded_disable.rb +0 -231
  725. data/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +0 -141
  726. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  727. data/lib/rubocop/cop/metrics/line_length.rb +0 -168
  728. data/lib/rubocop/cop/mixin/access_modifier_node.rb +0 -41
  729. data/lib/rubocop/cop/mixin/autocorrect_alignment.rb +0 -149
  730. data/lib/rubocop/cop/mixin/classish_length.rb +0 -36
  731. data/lib/rubocop/cop/mixin/on_method_def.rb +0 -44
  732. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -34
  733. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  734. data/lib/rubocop/cop/mixin/space_inside.rb +0 -76
  735. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  736. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -39
  737. data/lib/rubocop/cop/performance/case_when_splat.rb +0 -176
  738. data/lib/rubocop/cop/performance/casecmp.rb +0 -107
  739. data/lib/rubocop/cop/performance/compare_with_block.rb +0 -61
  740. data/lib/rubocop/cop/performance/count.rb +0 -98
  741. data/lib/rubocop/cop/performance/detect.rb +0 -107
  742. data/lib/rubocop/cop/performance/double_start_end_with.rb +0 -102
  743. data/lib/rubocop/cop/performance/end_with.rb +0 -55
  744. data/lib/rubocop/cop/performance/fixed_size.rb +0 -56
  745. data/lib/rubocop/cop/performance/flat_map.rb +0 -73
  746. data/lib/rubocop/cop/performance/hash_each_methods.rb +0 -84
  747. data/lib/rubocop/cop/performance/range_include.rb +0 -41
  748. data/lib/rubocop/cop/performance/redundant_block_call.rb +0 -93
  749. data/lib/rubocop/cop/performance/redundant_match.rb +0 -55
  750. data/lib/rubocop/cop/performance/redundant_merge.rb +0 -149
  751. data/lib/rubocop/cop/performance/regexp_match.rb +0 -215
  752. data/lib/rubocop/cop/performance/reverse_each.rb +0 -40
  753. data/lib/rubocop/cop/performance/size.rb +0 -71
  754. data/lib/rubocop/cop/performance/start_with.rb +0 -58
  755. data/lib/rubocop/cop/performance/string_replacement.rb +0 -170
  756. data/lib/rubocop/cop/performance/times_map.rb +0 -61
  757. data/lib/rubocop/cop/rails/action_filter.rb +0 -96
  758. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -68
  759. data/lib/rubocop/cop/rails/blank.rb +0 -132
  760. data/lib/rubocop/cop/rails/date.rb +0 -127
  761. data/lib/rubocop/cop/rails/delegate.rb +0 -106
  762. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -51
  763. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -81
  764. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -43
  765. data/lib/rubocop/cop/rails/exit.rb +0 -61
  766. data/lib/rubocop/cop/rails/file_path.rb +0 -75
  767. data/lib/rubocop/cop/rails/find_by.rb +0 -51
  768. data/lib/rubocop/cop/rails/find_each.rb +0 -47
  769. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -18
  770. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -106
  771. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  772. data/lib/rubocop/cop/rails/output.rb +0 -23
  773. data/lib/rubocop/cop/rails/output_safety.rb +0 -54
  774. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -106
  775. data/lib/rubocop/cop/rails/present.rb +0 -137
  776. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -65
  777. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -57
  778. data/lib/rubocop/cop/rails/request_referer.rb +0 -56
  779. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -216
  780. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -91
  781. data/lib/rubocop/cop/rails/save_bang.rb +0 -155
  782. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  783. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -63
  784. data/lib/rubocop/cop/rails/time_zone.rb +0 -197
  785. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -93
  786. data/lib/rubocop/cop/rails/validation.rb +0 -64
  787. data/lib/rubocop/cop/style/access_modifier_indentation.rb +0 -80
  788. data/lib/rubocop/cop/style/accessor_method_name.rb +0 -45
  789. data/lib/rubocop/cop/style/align_array.rb +0 -20
  790. data/lib/rubocop/cop/style/align_hash.rb +0 -235
  791. data/lib/rubocop/cop/style/align_parameters.rb +0 -69
  792. data/lib/rubocop/cop/style/ascii_identifiers.rb +0 -36
  793. data/lib/rubocop/cop/style/block_end_newline.rb +0 -56
  794. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -138
  795. data/lib/rubocop/cop/style/case_indentation.rb +0 -100
  796. data/lib/rubocop/cop/style/class_and_module_camel_case.rb +0 -29
  797. data/lib/rubocop/cop/style/closing_parenthesis_indentation.rb +0 -88
  798. data/lib/rubocop/cop/style/comment_indentation.rb +0 -71
  799. data/lib/rubocop/cop/style/constant_name.rb +0 -29
  800. data/lib/rubocop/cop/style/else_alignment.rb +0 -105
  801. data/lib/rubocop/cop/style/empty_line_between_defs.rb +0 -143
  802. data/lib/rubocop/cop/style/empty_lines_around_access_modifier.rb +0 -95
  803. data/lib/rubocop/cop/style/empty_lines_around_block_body.rb +0 -41
  804. data/lib/rubocop/cop/style/empty_lines_around_class_body.rb +0 -39
  805. data/lib/rubocop/cop/style/empty_lines_around_module_body.rb +0 -44
  806. data/lib/rubocop/cop/style/end_of_line.rb +0 -52
  807. data/lib/rubocop/cop/style/extra_spacing.rb +0 -237
  808. data/lib/rubocop/cop/style/first_parameter_indentation.rb +0 -109
  809. data/lib/rubocop/cop/style/flip_flop.rb +0 -20
  810. data/lib/rubocop/cop/style/indent_array.rb +0 -114
  811. data/lib/rubocop/cop/style/indent_hash.rb +0 -134
  812. data/lib/rubocop/cop/style/indent_heredoc.rb +0 -173
  813. data/lib/rubocop/cop/style/indentation_consistency.rb +0 -51
  814. data/lib/rubocop/cop/style/initial_indentation.rb +0 -42
  815. data/lib/rubocop/cop/style/leading_comment_space.rb +0 -43
  816. data/lib/rubocop/cop/style/method_missing.rb +0 -81
  817. data/lib/rubocop/cop/style/method_name.rb +0 -28
  818. data/lib/rubocop/cop/style/multiline_array_brace_layout.rb +0 -81
  819. data/lib/rubocop/cop/style/multiline_assignment_layout.rb +0 -88
  820. data/lib/rubocop/cop/style/multiline_block_layout.rb +0 -134
  821. data/lib/rubocop/cop/style/op_method.rb +0 -41
  822. data/lib/rubocop/cop/style/predicate_name.rb +0 -67
  823. data/lib/rubocop/cop/style/rescue_ensure_alignment.rb +0 -86
  824. data/lib/rubocop/cop/style/space_after_comma.rb +0 -21
  825. data/lib/rubocop/cop/style/space_after_method_name.rb +0 -37
  826. data/lib/rubocop/cop/style/space_around_block_parameters.rb +0 -109
  827. data/lib/rubocop/cop/style/space_around_equals_in_parameter_default.rb +0 -68
  828. data/lib/rubocop/cop/style/space_around_operators.rb +0 -142
  829. data/lib/rubocop/cop/style/space_before_block_braces.rb +0 -54
  830. data/lib/rubocop/cop/style/space_before_comma.rb +0 -16
  831. data/lib/rubocop/cop/style/space_before_comment.rb +0 -27
  832. data/lib/rubocop/cop/style/space_before_semicolon.rb +0 -16
  833. data/lib/rubocop/cop/style/space_in_lambda_literal.rb +0 -87
  834. data/lib/rubocop/cop/style/space_inside_block_braces.rb +0 -158
  835. data/lib/rubocop/cop/style/space_inside_brackets.rb +0 -20
  836. data/lib/rubocop/cop/style/space_inside_hash_literal_braces.rb +0 -150
  837. data/lib/rubocop/cop/style/space_inside_parens.rb +0 -16
  838. data/lib/rubocop/cop/style/space_inside_string_interpolation.rb +0 -65
  839. data/lib/rubocop/cop/style/tab.rb +0 -57
  840. data/lib/rubocop/cop/style/trailing_blank_lines.rb +0 -78
  841. data/lib/rubocop/cop/style/trailing_comma_in_literal.rb +0 -56
  842. data/lib/rubocop/cop/style/trailing_whitespace.rb +0 -28
  843. data/lib/rubocop/cop/style/unneeded_interpolation.rb +0 -98
  844. data/lib/rubocop/cop/style/variable_name.rb +0 -39
  845. data/lib/rubocop/cop/style/variable_number.rb +0 -78
  846. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  847. data/lib/rubocop/node_pattern.rb +0 -543
  848. data/lib/rubocop/processed_source.rb +0 -151
  849. data/lib/rubocop/rspec/shared_examples.rb +0 -100
  850. data/lib/rubocop/string_util.rb +0 -156
  851. data/lib/rubocop/token.rb +0 -25
@@ -4,20 +4,36 @@ module RuboCop
4
4
  module Cop
5
5
  module Style
6
6
  # This cop checks for usage of the %q/%Q syntax when '' or "" would do.
7
- class UnneededPercentQ < Cop
8
- MSG = 'Use `%s` only for strings that contain both single quotes and ' \
9
- 'double quotes%s.'.freeze
10
- DYNAMIC_MSG = ', or for dynamic strings that contain ' \
11
- 'double quotes'.freeze
12
- SINGLE_QUOTE = "'".freeze
13
- QUOTE = '"'.freeze
14
- EMPTY = ''.freeze
15
- PERCENT_Q = '%q'.freeze
16
- PERCENT_CAPITAL_Q = '%Q'.freeze
17
- STRING_INTERPOLATION_REGEXP = /#\{.+}/
18
- ESCAPED_NON_BACKSLASH = /\\[^\\]/
7
+ #
8
+ # @example
9
+ #
10
+ # # bad
11
+ # name = %q(Bruce Wayne)
12
+ # time = %q(8 o'clock)
13
+ # question = %q("What did you say?")
14
+ #
15
+ # # good
16
+ # name = 'Bruce Wayne'
17
+ # time = "8 o'clock"
18
+ # question = '"What did you say?"'
19
+ #
20
+ class RedundantPercentQ < Base
21
+ extend AutoCorrector
22
+
23
+ MSG = 'Use `%<q_type>s` only for strings that contain both ' \
24
+ 'single quotes and double quotes%<extra>s.'
25
+ DYNAMIC_MSG = ', or for dynamic strings that contain double quotes'
26
+ SINGLE_QUOTE = "'"
27
+ QUOTE = '"'
28
+ EMPTY = ''
29
+ PERCENT_Q = '%q'
30
+ PERCENT_CAPITAL_Q = '%Q'
31
+ STRING_INTERPOLATION_REGEXP = /#\{.+\}/.freeze
32
+ ESCAPED_NON_BACKSLASH = /\\[^\\]/.freeze
19
33
 
20
34
  def on_dstr(node)
35
+ return unless string_literal?(node)
36
+
21
37
  check(node)
22
38
  end
23
39
 
@@ -26,6 +42,7 @@ module RuboCop
26
42
  # will call `on_dstr` for the entire string and `on_str` for the
27
43
  # non interpolated portion of the string
28
44
  return unless string_literal?(node)
45
+
29
46
  check(node)
30
47
  end
31
48
 
@@ -35,7 +52,12 @@ module RuboCop
35
52
  return unless start_with_percent_q_variant?(node)
36
53
  return if interpolated_quotes?(node) || allowed_percent_q?(node)
37
54
 
38
- add_offense(node, :expression)
55
+ add_offense(node) do |corrector|
56
+ delimiter = /^%Q[^"]+$|'/.match?(node.source) ? QUOTE : SINGLE_QUOTE
57
+
58
+ corrector.replace(node.loc.begin, delimiter)
59
+ corrector.replace(node.loc.end, delimiter)
60
+ end
39
61
  end
40
62
 
41
63
  def interpolated_quotes?(node)
@@ -55,16 +77,7 @@ module RuboCop
55
77
  else
56
78
  EMPTY
57
79
  end
58
- format(MSG, src[0, 2], extra)
59
- end
60
-
61
- def autocorrect(node)
62
- delimiter =
63
- node.source =~ /^%Q[^"]+$|'/ ? QUOTE : SINGLE_QUOTE
64
- lambda do |corrector|
65
- corrector.replace(node.loc.begin, delimiter)
66
- corrector.replace(node.loc.end, delimiter)
67
- end
80
+ format(MSG, q_type: src[0, 2], extra: extra)
68
81
  end
69
82
 
70
83
  def string_literal?(node)
@@ -79,15 +92,15 @@ module RuboCop
79
92
  def acceptable_q?(node)
80
93
  src = node.source
81
94
 
82
- return true if src =~ STRING_INTERPOLATION_REGEXP
95
+ return true if STRING_INTERPOLATION_REGEXP.match?(src)
83
96
 
84
- src.scan(/\\./).any? { |s| s =~ ESCAPED_NON_BACKSLASH }
97
+ src.scan(/\\./).any? { |s| ESCAPED_NON_BACKSLASH.match?(s) }
85
98
  end
86
99
 
87
100
  def acceptable_capital_q?(node)
88
101
  src = node.source
89
102
  src.include?(QUOTE) &&
90
- (src =~ STRING_INTERPOLATION_REGEXP ||
103
+ (STRING_INTERPOLATION_REGEXP.match?(src) ||
91
104
  (node.str_type? && double_quotes_required?(src)))
92
105
  end
93
106
  end
@@ -0,0 +1,104 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # This cop checks for unnecessary single-element Regexp character classes.
7
+ #
8
+ # @example
9
+ #
10
+ # # bad
11
+ # r = /[x]/
12
+ #
13
+ # # good
14
+ # r = /x/
15
+ #
16
+ # # bad
17
+ # r = /[\s]/
18
+ #
19
+ # # good
20
+ # r = /\s/
21
+ #
22
+ # # bad
23
+ # r = %r{/[b]}
24
+ #
25
+ # # good
26
+ # r = %r{/b}
27
+ #
28
+ # # good
29
+ # r = /[ab]/
30
+ class RedundantRegexpCharacterClass < Base
31
+ extend AutoCorrector
32
+
33
+ REQUIRES_ESCAPE_OUTSIDE_CHAR_CLASS_CHARS = '.*+?{}()|$'.chars.freeze
34
+ MSG_REDUNDANT_CHARACTER_CLASS = 'Redundant single-element character class, ' \
35
+ '`%<char_class>s` can be replaced with `%<element>s`.'
36
+
37
+ def on_regexp(node)
38
+ each_redundant_character_class(node) do |loc|
39
+ add_offense(
40
+ loc, message: format(
41
+ MSG_REDUNDANT_CHARACTER_CLASS,
42
+ char_class: loc.source,
43
+ element: without_character_class(loc)
44
+ )
45
+ ) do |corrector|
46
+ corrector.replace(loc, without_character_class(loc))
47
+ end
48
+ end
49
+ end
50
+
51
+ private
52
+
53
+ def each_redundant_character_class(node)
54
+ each_single_element_character_class(node) do |char_class|
55
+ next unless redundant_single_element_character_class?(node, char_class)
56
+
57
+ yield char_class.loc.body
58
+ end
59
+ end
60
+
61
+ def each_single_element_character_class(node)
62
+ node.parsed_tree&.each_expression do |expr|
63
+ next if expr.type != :set || expr.expressions.size != 1
64
+ next if expr.negative?
65
+ next if %i[set posixclass nonposixclass].include?(expr.expressions.first.type)
66
+
67
+ yield expr
68
+ end
69
+ end
70
+
71
+ def redundant_single_element_character_class?(node, char_class)
72
+ class_elem = char_class.expressions.first.text
73
+
74
+ non_redundant =
75
+ whitespace_in_free_space_mode?(node, class_elem) ||
76
+ backslash_b?(class_elem) ||
77
+ requires_escape_outside_char_class?(class_elem)
78
+
79
+ !non_redundant
80
+ end
81
+
82
+ def without_character_class(loc)
83
+ loc.source[1..-2]
84
+ end
85
+
86
+ def whitespace_in_free_space_mode?(node, elem)
87
+ return false unless node.extended?
88
+
89
+ /\s/.match?(elem)
90
+ end
91
+
92
+ def backslash_b?(elem)
93
+ # \b's behaviour is different inside and outside of a character class, matching word
94
+ # boundaries outside but backspace (0x08) when inside.
95
+ elem == '\b'
96
+ end
97
+
98
+ def requires_escape_outside_char_class?(elem)
99
+ REQUIRES_ESCAPE_OUTSIDE_CHAR_CLASS_CHARS.include?(elem)
100
+ end
101
+ end
102
+ end
103
+ end
104
+ end
@@ -0,0 +1,118 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Style
6
+ # This cop checks for redundant escapes inside Regexp literals.
7
+ #
8
+ # @example
9
+ # # bad
10
+ # %r{foo\/bar}
11
+ #
12
+ # # good
13
+ # %r{foo/bar}
14
+ #
15
+ # # good
16
+ # /foo\/bar/
17
+ #
18
+ # # good
19
+ # %r/foo\/bar/
20
+ #
21
+ # # good
22
+ # %r!foo\!bar!
23
+ #
24
+ # # bad
25
+ # /a\-b/
26
+ #
27
+ # # good
28
+ # /a-b/
29
+ #
30
+ # # bad
31
+ # /[\+\-]\d/
32
+ #
33
+ # # good
34
+ # /[+\-]\d/
35
+ class RedundantRegexpEscape < Base
36
+ include RangeHelp
37
+ extend AutoCorrector
38
+
39
+ MSG_REDUNDANT_ESCAPE = 'Redundant escape inside regexp literal'
40
+
41
+ ALLOWED_ALWAYS_ESCAPES = " \n[]^\\#".chars.freeze
42
+ ALLOWED_WITHIN_CHAR_CLASS_METACHAR_ESCAPES = '-'.chars.freeze
43
+ ALLOWED_OUTSIDE_CHAR_CLASS_METACHAR_ESCAPES = '.*+?{}()|$'.chars.freeze
44
+
45
+ def on_regexp(node)
46
+ each_escape(node) do |char, index, within_character_class|
47
+ next if allowed_escape?(node, char, within_character_class)
48
+
49
+ location = escape_range_at_index(node, index)
50
+
51
+ add_offense(location, message: MSG_REDUNDANT_ESCAPE) do |corrector|
52
+ corrector.remove_leading(escape_range_at_index(node, index), 1)
53
+ end
54
+ end
55
+ end
56
+
57
+ private
58
+
59
+ def allowed_escape?(node, char, within_character_class)
60
+ # Strictly speaking a few single-letter metachars are currently
61
+ # unnecessary to "escape", e.g. i, E, F, but enumerating them is
62
+ # rather difficult, and their behaviour could change over time with
63
+ # different versions of Ruby so that e.g. /\i/ != /i/
64
+ return true if /[[:alnum:]]/.match?(char)
65
+ return true if ALLOWED_ALWAYS_ESCAPES.include?(char) || delimiter?(node, char)
66
+
67
+ if within_character_class
68
+ ALLOWED_WITHIN_CHAR_CLASS_METACHAR_ESCAPES.include?(char)
69
+ else
70
+ ALLOWED_OUTSIDE_CHAR_CLASS_METACHAR_ESCAPES.include?(char)
71
+ end
72
+ end
73
+
74
+ def delimiter?(node, char)
75
+ delimiters = [node.loc.begin.source[-1], node.loc.end.source[0]]
76
+
77
+ delimiters.include?(char)
78
+ end
79
+
80
+ if Gem::Version.new(Regexp::Parser::VERSION) >= Gem::Version.new('2.0')
81
+ def each_escape(node)
82
+ node.parsed_tree&.traverse&.reduce(0) do |char_class_depth, (event, expr)|
83
+ yield(expr.text[1], expr.ts, !char_class_depth.zero?) if expr.type == :escape
84
+
85
+ if expr.type == :set
86
+ char_class_depth + (event == :enter ? 1 : -1)
87
+ else
88
+ char_class_depth
89
+ end
90
+ end
91
+ end
92
+ # Please remove this `else` branch when support for regexp_parser 1.8 will be dropped.
93
+ # It's for compatibility with regexp_arser 1.8 and will never be maintained.
94
+ else
95
+ def each_escape(node)
96
+ node.parsed_tree&.traverse&.reduce(0) do |char_class_depth, (event, expr)|
97
+ yield(expr.text[1], expr.start_index, !char_class_depth.zero?) if expr.type == :escape
98
+
99
+ if expr.type == :set
100
+ char_class_depth + (event == :enter ? 1 : -1)
101
+ else
102
+ char_class_depth
103
+ end
104
+ end
105
+ end
106
+ end
107
+
108
+ def escape_range_at_index(node, index)
109
+ regexp_begin = node.loc.begin.end_pos
110
+
111
+ start = regexp_begin + index
112
+
113
+ range_between(start, start + 2)
114
+ end
115
+ end
116
+ end
117
+ end
118
+ end
@@ -6,11 +6,15 @@ module RuboCop
6
6
  # This cop checks for redundant `return` expressions.
7
7
  #
8
8
  # @example
9
+ # # These bad cases should be extended to handle methods whose body is
10
+ # # if/else or a case expression with a default branch.
9
11
  #
12
+ # # bad
10
13
  # def test
11
14
  # return something
12
15
  # end
13
16
  #
17
+ # # bad
14
18
  # def test
15
19
  # one
16
20
  # two
@@ -18,102 +22,148 @@ module RuboCop
18
22
  # return something
19
23
  # end
20
24
  #
21
- # It should be extended to handle methods whose body is if/else
22
- # or a case expression with a default branch.
23
- class RedundantReturn < Cop
24
- include OnMethodDef
25
+ # # good
26
+ # def test
27
+ # return something if something_else
28
+ # end
29
+ #
30
+ # # good
31
+ # def test
32
+ # if x
33
+ # elsif y
34
+ # else
35
+ # end
36
+ # end
37
+ #
38
+ # @example AllowMultipleReturnValues: false (default)
39
+ # # bad
40
+ # def test
41
+ # return x, y
42
+ # end
43
+ #
44
+ # @example AllowMultipleReturnValues: true
45
+ # # good
46
+ # def test
47
+ # return x, y
48
+ # end
49
+ #
50
+ class RedundantReturn < Base
51
+ include RangeHelp
52
+ extend AutoCorrector
25
53
 
26
- MSG = 'Redundant `return` detected.'.freeze
54
+ MSG = 'Redundant `return` detected.'
55
+ MULTI_RETURN_MSG = 'To return multiple values, use an array.'
56
+
57
+ def on_def(node)
58
+ check_branch(node.body)
59
+ end
60
+ alias on_defs on_def
27
61
 
28
62
  private
29
63
 
30
- def autocorrect(node)
31
- lambda do |corrector|
32
- unless arguments?(node.children)
33
- corrector.replace(node.source_range, 'nil')
34
- next
35
- end
64
+ def correct_without_arguments(return_node, corrector)
65
+ corrector.replace(return_node, 'nil')
66
+ end
36
67
 
37
- return_value, = *node
38
- if node.children.size > 1
39
- add_brackets(corrector, node)
40
- elsif return_value.hash_type?
41
- add_braces(corrector, return_value) unless return_value.braces?
42
- end
43
- return_kw = range_with_surrounding_space(node.loc.keyword, :right)
44
- corrector.remove(return_kw)
68
+ def correct_with_arguments(return_node, corrector)
69
+ if return_node.children.size > 1
70
+ add_brackets(corrector, return_node)
71
+ elsif hash_without_braces?(return_node.first_argument)
72
+ add_braces(corrector, return_node.first_argument)
73
+ end
74
+ if return_node.splat_argument?
75
+ first_argument = return_node.first_argument
76
+ corrector.replace(first_argument, first_argument.source.delete_prefix('*'))
45
77
  end
46
- end
47
78
 
48
- def add_brackets(corrector, node)
49
- kids = node.children.map(&:source_range)
50
- corrector.insert_before(kids.first, '[')
51
- corrector.insert_after(kids.last, ']')
79
+ keyword = range_with_surrounding_space(range: return_node.loc.keyword, side: :right)
80
+ corrector.remove(keyword)
52
81
  end
53
82
 
54
- def add_braces(corrector, node)
55
- kids = node.children.map(&:source_range)
56
- corrector.insert_before(kids.first, '{')
57
- corrector.insert_after(kids.last, '}')
83
+ def hash_without_braces?(node)
84
+ node.hash_type? && !node.braces?
58
85
  end
59
86
 
60
- def arguments?(args)
61
- return false if args.empty?
62
- return true if args.size > 1
63
-
64
- !args.first.begin_type? || !args.first.children.empty?
87
+ def add_brackets(corrector, node)
88
+ corrector.insert_before(node.children.first, '[')
89
+ corrector.insert_after(node.children.last, ']')
65
90
  end
66
91
 
67
- def on_method_def(_node, _method_name, _args, body)
68
- return unless body
69
-
70
- check_branch(body)
92
+ def add_braces(corrector, node)
93
+ corrector.insert_before(node.children.first, '{')
94
+ corrector.insert_after(node.children.last, '}')
71
95
  end
72
96
 
97
+ # rubocop:disable Metrics/CyclomaticComplexity
73
98
  def check_branch(node)
99
+ return unless node
100
+
74
101
  case node.type
75
102
  when :return then check_return_node(node)
76
- when :case then check_case_node(node)
77
- when :if then check_if_node(node)
78
- when :begin then check_begin_node(node)
103
+ when :case then check_case_node(node)
104
+ when :if then check_if_node(node)
105
+ when :rescue then check_rescue_node(node)
106
+ when :resbody then check_resbody_node(node)
107
+ when :ensure then check_ensure_node(node)
108
+ when :begin, :kwbegin
109
+ check_begin_node(node)
79
110
  end
80
111
  end
112
+ # rubocop:enable Metrics/CyclomaticComplexity
81
113
 
82
114
  def check_return_node(node)
83
- return if cop_config['AllowMultipleReturnValues'] &&
84
- node.children.size > 1
115
+ return if cop_config['AllowMultipleReturnValues'] && node.children.size > 1
85
116
 
86
- add_offense(node, :keyword)
117
+ add_offense(node.loc.keyword, message: message(node)) do |corrector|
118
+ if node.arguments?
119
+ correct_with_arguments(node, corrector)
120
+ else
121
+ correct_without_arguments(node, corrector)
122
+ end
123
+ end
87
124
  end
88
125
 
89
126
  def check_case_node(node)
90
- _cond, *when_nodes, else_node = *node
91
- when_nodes.each { |when_node| check_when_node(when_node) }
92
- check_branch(else_node) if else_node
93
- end
94
-
95
- def check_when_node(node)
96
- return unless node
97
- _cond, body = *node
98
- check_branch(body) if body
127
+ node.when_branches.each { |when_node| check_branch(when_node.body) }
128
+ check_branch(node.else_branch)
99
129
  end
100
130
 
101
131
  def check_if_node(node)
102
132
  return if node.modifier_form? || node.ternary?
103
133
 
104
- _cond, if_node, else_node = *node.node_parts
134
+ check_branch(node.if_branch)
135
+ check_branch(node.else_branch)
136
+ end
137
+
138
+ def check_rescue_node(node)
139
+ node.branches.each { |branch| check_branch(branch) }
140
+ check_branch(node.body) unless node.else?
141
+ end
142
+
143
+ def check_resbody_node(node)
144
+ check_branch(node.body)
145
+ end
105
146
 
106
- check_branch(if_node) if if_node
107
- check_branch(else_node) if else_node
147
+ def check_ensure_node(node)
148
+ rescue_node = node.node_parts[0]
149
+ check_branch(rescue_node)
108
150
  end
109
151
 
110
152
  def check_begin_node(node)
111
- expressions = *node
112
- last_expr = expressions.last
153
+ last_expr = node.children.last
154
+ check_branch(last_expr)
155
+ end
113
156
 
114
- return unless last_expr && last_expr.return_type?
157
+ def allow_multiple_return_values?
158
+ cop_config['AllowMultipleReturnValues'] || false
159
+ end
115
160
 
116
- check_return_node(last_expr)
161
+ def message(node)
162
+ if !allow_multiple_return_values? && node.children.size > 1
163
+ "#{MSG} #{MULTI_RETURN_MSG}"
164
+ else
165
+ MSG
166
+ end
117
167
  end
118
168
  end
119
169
  end