rubocop 0.52.1 → 0.93.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (749) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +49 -38
  4. data/assets/output.html.erb +1 -1
  5. data/bin/console +10 -0
  6. data/bin/rubocop-profile +32 -0
  7. data/bin/setup +7 -0
  8. data/config/default.yml +3332 -538
  9. data/{bin → exe}/rubocop +0 -0
  10. data/lib/rubocop.rb +206 -158
  11. data/lib/rubocop/ast_aliases.rb +8 -0
  12. data/lib/rubocop/cached_data.rb +4 -2
  13. data/lib/rubocop/cli.rb +50 -187
  14. data/lib/rubocop/cli/command.rb +22 -0
  15. data/lib/rubocop/cli/command/auto_genenerate_config.rb +141 -0
  16. data/lib/rubocop/cli/command/base.rb +35 -0
  17. data/lib/rubocop/cli/command/execute_runner.rb +85 -0
  18. data/lib/rubocop/cli/command/init_dotfile.rb +46 -0
  19. data/lib/rubocop/cli/command/show_cops.rb +77 -0
  20. data/lib/rubocop/cli/command/version.rb +18 -0
  21. data/lib/rubocop/cli/environment.rb +22 -0
  22. data/lib/rubocop/comment_config.rb +73 -12
  23. data/lib/rubocop/config.rb +117 -385
  24. data/lib/rubocop/config_loader.rb +145 -92
  25. data/lib/rubocop/config_loader_resolver.rb +124 -30
  26. data/lib/rubocop/config_obsoletion.rb +283 -0
  27. data/lib/rubocop/config_regeneration.rb +33 -0
  28. data/lib/rubocop/config_store.rb +19 -5
  29. data/lib/rubocop/config_validator.rb +224 -0
  30. data/lib/rubocop/cop/autocorrect_logic.rb +73 -4
  31. data/lib/rubocop/cop/badge.rb +7 -7
  32. data/lib/rubocop/cop/base.rb +430 -0
  33. data/lib/rubocop/cop/bundler/duplicated_gem.rb +9 -3
  34. data/lib/rubocop/cop/bundler/gem_comment.rb +138 -0
  35. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +19 -25
  36. data/lib/rubocop/cop/bundler/ordered_gems.rb +6 -4
  37. data/lib/rubocop/cop/commissioner.rb +102 -62
  38. data/lib/rubocop/cop/cop.rb +104 -181
  39. data/lib/rubocop/cop/corrector.rb +82 -98
  40. data/lib/rubocop/cop/correctors/alignment_corrector.rb +50 -29
  41. data/lib/rubocop/cop/correctors/condition_corrector.rb +3 -6
  42. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  43. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +9 -10
  44. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  45. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  46. data/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  47. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +82 -45
  48. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +6 -9
  49. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +112 -0
  50. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +8 -10
  51. data/lib/rubocop/cop/correctors/space_corrector.rb +15 -3
  52. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +2 -2
  53. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +18 -9
  54. data/lib/rubocop/cop/documentation.rb +22 -0
  55. data/lib/rubocop/cop/force.rb +2 -0
  56. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +7 -5
  57. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +5 -7
  58. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +49 -25
  59. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  60. data/lib/rubocop/cop/generator.rb +70 -37
  61. data/lib/rubocop/cop/generator/configuration_injector.rb +66 -0
  62. data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
  63. data/lib/rubocop/cop/ignored_node.rb +1 -3
  64. data/lib/rubocop/cop/internal_affairs.rb +1 -0
  65. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +52 -0
  66. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +13 -15
  67. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +14 -16
  68. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +12 -11
  69. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +15 -22
  70. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +13 -11
  71. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +5 -5
  72. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +15 -27
  73. data/lib/rubocop/cop/layout/{align_parameters.rb → argument_alignment.rb} +21 -17
  74. data/lib/rubocop/cop/layout/array_alignment.rb +83 -0
  75. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +12 -3
  76. data/lib/rubocop/cop/layout/begin_end_alignment.rb +77 -0
  77. data/lib/rubocop/cop/{lint → layout}/block_alignment.rb +36 -29
  78. data/lib/rubocop/cop/layout/block_end_newline.rb +9 -20
  79. data/lib/rubocop/cop/layout/case_indentation.rb +23 -26
  80. data/lib/rubocop/cop/layout/class_structure.rb +97 -98
  81. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +124 -0
  82. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +140 -30
  83. data/lib/rubocop/cop/layout/comment_indentation.rb +34 -7
  84. data/lib/rubocop/cop/{lint → layout}/condition_position.rb +18 -10
  85. data/lib/rubocop/cop/{lint → layout}/def_end_alignment.rb +11 -7
  86. data/lib/rubocop/cop/layout/dot_position.rb +31 -27
  87. data/lib/rubocop/cop/layout/else_alignment.rb +28 -15
  88. data/lib/rubocop/cop/layout/empty_comment.rb +158 -0
  89. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +160 -0
  90. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +17 -16
  91. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  92. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +32 -29
  93. data/lib/rubocop/cop/layout/empty_lines.rb +11 -12
  94. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +147 -39
  95. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +29 -18
  96. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  97. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +4 -8
  98. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +6 -7
  99. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +28 -11
  100. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +6 -9
  101. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +4 -7
  102. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +5 -9
  103. data/lib/rubocop/cop/{lint → layout}/end_alignment.rb +49 -23
  104. data/lib/rubocop/cop/layout/end_of_line.rb +48 -8
  105. data/lib/rubocop/cop/layout/extra_spacing.rb +71 -118
  106. data/lib/rubocop/cop/layout/first_argument_indentation.rb +251 -0
  107. data/lib/rubocop/cop/layout/{indent_array.rb → first_array_element_indentation.rb} +22 -16
  108. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +4 -7
  109. data/lib/rubocop/cop/layout/{indent_hash.rb → first_hash_element_indentation.rb} +10 -9
  110. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +3 -6
  111. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +8 -12
  112. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +3 -6
  113. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +57 -76
  114. data/lib/rubocop/cop/layout/hash_alignment.rb +362 -0
  115. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +286 -0
  116. data/lib/rubocop/cop/layout/heredoc_indentation.rb +176 -0
  117. data/lib/rubocop/cop/layout/indentation_consistency.rb +155 -7
  118. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  119. data/lib/rubocop/cop/layout/indentation_width.rb +72 -28
  120. data/lib/rubocop/cop/layout/initial_indentation.rb +24 -11
  121. data/lib/rubocop/cop/layout/leading_comment_space.rb +75 -12
  122. data/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  123. data/lib/rubocop/cop/layout/line_length.rb +280 -0
  124. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +13 -16
  125. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +36 -0
  126. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +18 -16
  127. data/lib/rubocop/cop/layout/multiline_block_layout.rb +74 -29
  128. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +6 -13
  129. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +47 -0
  130. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +48 -0
  131. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +68 -38
  132. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +7 -8
  133. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +80 -42
  134. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +29 -5
  135. data/lib/rubocop/cop/layout/parameter_alignment.rb +118 -0
  136. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +142 -30
  137. data/lib/rubocop/cop/layout/space_after_colon.rb +13 -9
  138. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  139. data/lib/rubocop/cop/layout/space_after_method_name.rb +11 -9
  140. data/lib/rubocop/cop/layout/space_after_not.rb +13 -13
  141. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  142. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +76 -47
  143. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +33 -24
  144. data/lib/rubocop/cop/layout/space_around_keyword.rb +42 -29
  145. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  146. data/lib/rubocop/cop/layout/space_around_operators.rb +132 -48
  147. data/lib/rubocop/cop/layout/space_before_block_braces.rb +69 -25
  148. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  149. data/lib/rubocop/cop/layout/space_before_comment.rb +15 -11
  150. data/lib/rubocop/cop/layout/space_before_first_arg.rb +18 -8
  151. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  152. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +29 -40
  153. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +68 -77
  154. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +5 -10
  155. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +41 -24
  156. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +68 -62
  157. data/lib/rubocop/cop/layout/space_inside_parens.rb +72 -17
  158. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +8 -13
  159. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +10 -19
  160. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +76 -26
  161. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +26 -42
  162. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
  163. data/lib/rubocop/cop/layout/trailing_whitespace.rb +58 -9
  164. data/lib/rubocop/cop/legacy/corrections_proxy.rb +49 -0
  165. data/lib/rubocop/cop/legacy/corrector.rb +29 -0
  166. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +15 -7
  167. data/lib/rubocop/cop/lint/ambiguous_operator.rb +54 -6
  168. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +36 -7
  169. data/lib/rubocop/cop/lint/assignment_in_condition.rb +30 -27
  170. data/lib/rubocop/cop/lint/big_decimal_new.rb +43 -0
  171. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +50 -0
  172. data/lib/rubocop/cop/lint/boolean_symbol.rb +23 -3
  173. data/lib/rubocop/cop/lint/circular_argument_reference.rb +3 -3
  174. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +74 -0
  175. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  176. data/lib/rubocop/cop/lint/debugger.rb +14 -11
  177. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +41 -23
  178. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +141 -0
  179. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +87 -0
  180. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +2 -2
  181. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  182. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +2 -2
  183. data/lib/rubocop/cop/lint/duplicate_methods.rb +44 -30
  184. data/lib/rubocop/cop/lint/duplicate_require.rb +46 -0
  185. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  186. data/lib/rubocop/cop/lint/each_with_object_argument.rb +7 -3
  187. data/lib/rubocop/cop/lint/else_layout.rb +3 -2
  188. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  189. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -6
  190. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  191. data/lib/rubocop/cop/lint/empty_file.rb +50 -0
  192. data/lib/rubocop/cop/lint/empty_interpolation.rb +9 -10
  193. data/lib/rubocop/cop/lint/empty_when.rb +32 -9
  194. data/lib/rubocop/cop/lint/ensure_return.rb +31 -13
  195. data/lib/rubocop/cop/lint/erb_new_arguments.rb +165 -0
  196. data/lib/rubocop/cop/{style → lint}/flip_flop.rb +5 -4
  197. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  198. data/lib/rubocop/cop/lint/float_out_of_range.rb +3 -3
  199. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +65 -46
  200. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +37 -0
  201. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +155 -0
  202. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  203. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +26 -19
  204. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +43 -67
  205. data/lib/rubocop/cop/lint/inherit_exception.rb +34 -9
  206. data/lib/rubocop/cop/lint/interpolation_check.rb +24 -5
  207. data/lib/rubocop/cop/lint/literal_as_condition.rb +30 -24
  208. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +38 -16
  209. data/lib/rubocop/cop/lint/loop.rb +31 -8
  210. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +15 -11
  211. data/lib/rubocop/cop/lint/missing_super.rb +99 -0
  212. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  213. data/lib/rubocop/cop/lint/{multiple_compare.rb → multiple_comparison.rb} +12 -13
  214. data/lib/rubocop/cop/lint/nested_method_definition.rb +21 -26
  215. data/lib/rubocop/cop/lint/nested_percent_literal.rb +7 -14
  216. data/lib/rubocop/cop/lint/next_without_accumulator.rb +3 -3
  217. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +160 -0
  218. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +14 -16
  219. data/lib/rubocop/cop/lint/number_conversion.rb +79 -0
  220. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +84 -0
  221. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +79 -0
  222. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +39 -15
  223. data/lib/rubocop/cop/lint/percent_string_array.rb +10 -17
  224. data/lib/rubocop/cop/lint/percent_symbol_array.rb +21 -17
  225. data/lib/rubocop/cop/lint/raise_exception.rb +86 -0
  226. data/lib/rubocop/cop/lint/rand_one.rb +7 -6
  227. data/lib/rubocop/cop/lint/{unneeded_disable.rb → redundant_cop_disable_directive.rb} +91 -76
  228. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +125 -0
  229. data/lib/rubocop/cop/lint/{unneeded_require_statement.rb → redundant_require_statement.rb} +12 -15
  230. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +78 -0
  231. data/lib/rubocop/cop/lint/{unneeded_splat_expansion.rb → redundant_splat_expansion.rb} +32 -23
  232. data/lib/rubocop/cop/lint/{string_conversion_in_interpolation.rb → redundant_string_coercion.rb} +15 -21
  233. data/lib/rubocop/cop/lint/redundant_with_index.rb +17 -18
  234. data/lib/rubocop/cop/lint/redundant_with_object.rb +18 -19
  235. data/lib/rubocop/cop/lint/regexp_as_condition.rb +7 -3
  236. data/lib/rubocop/cop/lint/require_parentheses.rb +6 -3
  237. data/lib/rubocop/cop/lint/rescue_exception.rb +4 -3
  238. data/lib/rubocop/cop/lint/rescue_type.rb +15 -12
  239. data/lib/rubocop/cop/lint/return_in_void_context.rb +4 -6
  240. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +21 -29
  241. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +98 -0
  242. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  243. data/lib/rubocop/cop/lint/script_permission.rb +40 -16
  244. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  245. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +87 -0
  246. data/lib/rubocop/cop/lint/shadowed_argument.rb +51 -15
  247. data/lib/rubocop/cop/lint/shadowed_exception.rb +47 -28
  248. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +9 -9
  249. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  250. data/lib/rubocop/cop/lint/suppressed_exception.rb +89 -0
  251. data/lib/rubocop/cop/lint/syntax.rb +12 -28
  252. data/lib/rubocop/cop/lint/to_json.rb +50 -0
  253. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  254. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +57 -0
  255. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +30 -10
  256. data/lib/rubocop/cop/lint/unified_integer.rb +6 -8
  257. data/lib/rubocop/cop/lint/unreachable_code.rb +10 -8
  258. data/lib/rubocop/cop/lint/unreachable_loop.rb +171 -0
  259. data/lib/rubocop/cop/lint/unused_block_argument.rb +30 -9
  260. data/lib/rubocop/cop/lint/unused_method_argument.rb +64 -15
  261. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +19 -16
  262. data/lib/rubocop/cop/lint/uri_regexp.rb +12 -47
  263. data/lib/rubocop/cop/lint/useless_access_modifier.rb +110 -47
  264. data/lib/rubocop/cop/lint/useless_assignment.rb +12 -14
  265. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +10 -11
  266. data/lib/rubocop/cop/lint/useless_method_definition.rb +70 -0
  267. data/lib/rubocop/cop/lint/useless_setter_call.rb +17 -16
  268. data/lib/rubocop/cop/lint/useless_times.rb +106 -0
  269. data/lib/rubocop/cop/lint/void.rb +63 -35
  270. data/lib/rubocop/cop/message_annotator.rb +22 -11
  271. data/lib/rubocop/cop/metrics/abc_size.rb +4 -19
  272. data/lib/rubocop/cop/metrics/block_length.rb +46 -4
  273. data/lib/rubocop/cop/metrics/block_nesting.rb +4 -3
  274. data/lib/rubocop/cop/metrics/class_length.rb +43 -2
  275. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +38 -5
  276. data/lib/rubocop/cop/metrics/method_length.rb +31 -4
  277. data/lib/rubocop/cop/metrics/module_length.rb +35 -2
  278. data/lib/rubocop/cop/metrics/parameter_lists.rb +4 -8
  279. data/lib/rubocop/cop/metrics/perceived_complexity.rb +9 -11
  280. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +138 -0
  281. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +158 -0
  282. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  283. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +37 -0
  284. data/lib/rubocop/cop/migration/department_name.rb +83 -0
  285. data/lib/rubocop/cop/mixin/alignment.rb +12 -6
  286. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  287. data/lib/rubocop/cop/mixin/annotation_comment.rb +6 -0
  288. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  289. data/lib/rubocop/cop/mixin/array_syntax.rb +1 -1
  290. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  291. data/lib/rubocop/cop/mixin/check_assignment.rb +13 -9
  292. data/lib/rubocop/cop/mixin/check_line_breakable.rb +193 -0
  293. data/lib/rubocop/cop/mixin/code_length.rb +28 -3
  294. data/lib/rubocop/cop/mixin/comments_help.rb +48 -0
  295. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +8 -5
  296. data/lib/rubocop/cop/mixin/configurable_formatting.rb +4 -7
  297. data/lib/rubocop/cop/mixin/configurable_max.rb +4 -2
  298. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  299. data/lib/rubocop/cop/mixin/configurable_numbering.rb +3 -3
  300. data/lib/rubocop/cop/mixin/def_node.rb +5 -1
  301. data/lib/rubocop/cop/mixin/documentation_comment.rb +13 -7
  302. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +35 -18
  303. data/lib/rubocop/cop/mixin/empty_parameter.rb +5 -2
  304. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +24 -6
  305. data/lib/rubocop/cop/mixin/enforce_superclass.rb +6 -4
  306. data/lib/rubocop/cop/mixin/first_element_line_break.rb +4 -2
  307. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +31 -6
  308. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +38 -7
  309. data/lib/rubocop/cop/mixin/hash_transform_method.rb +197 -0
  310. data/lib/rubocop/cop/mixin/heredoc.rb +6 -2
  311. data/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  312. data/lib/rubocop/cop/mixin/ignored_pattern.rb +1 -1
  313. data/lib/rubocop/cop/mixin/integer_node.rb +1 -1
  314. data/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  315. data/lib/rubocop/cop/mixin/line_length_help.rb +87 -0
  316. data/lib/rubocop/cop/mixin/match_range.rb +2 -0
  317. data/lib/rubocop/cop/mixin/method_complexity.rb +18 -4
  318. data/lib/rubocop/cop/mixin/method_preference.rb +2 -1
  319. data/lib/rubocop/cop/mixin/min_body_length.rb +1 -1
  320. data/lib/rubocop/cop/mixin/{array_hash_indentation.rb → multiline_element_indentation.rb} +3 -2
  321. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +35 -0
  322. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +42 -13
  323. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +17 -14
  324. data/lib/rubocop/cop/mixin/negative_conditional.rb +3 -3
  325. data/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  326. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +15 -2
  327. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  328. data/lib/rubocop/cop/mixin/percent_array.rb +18 -11
  329. data/lib/rubocop/cop/mixin/percent_literal.rb +3 -65
  330. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +96 -6
  331. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  332. data/lib/rubocop/cop/mixin/range_help.rb +131 -0
  333. data/lib/rubocop/cop/mixin/rational_literal.rb +18 -0
  334. data/lib/rubocop/cop/mixin/rescue_node.rb +13 -4
  335. data/lib/rubocop/cop/mixin/safe_assignment.rb +2 -1
  336. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +13 -11
  337. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +16 -13
  338. data/lib/rubocop/cop/mixin/statement_modifier.rb +48 -18
  339. data/lib/rubocop/cop/mixin/string_literals_help.rb +2 -1
  340. data/lib/rubocop/cop/mixin/surrounding_space.rb +62 -42
  341. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  342. data/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  343. data/lib/rubocop/cop/mixin/trailing_comma.rb +96 -46
  344. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +106 -0
  345. data/lib/rubocop/cop/mixin/unused_argument.rb +4 -6
  346. data/lib/rubocop/cop/mixin/visibility_help.rb +38 -0
  347. data/lib/rubocop/cop/naming/accessor_method_name.rb +6 -4
  348. data/lib/rubocop/cop/naming/ascii_identifiers.rb +33 -7
  349. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +7 -6
  350. data/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  351. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +15 -5
  352. data/lib/rubocop/cop/naming/constant_name.rb +35 -11
  353. data/lib/rubocop/cop/naming/file_name.rb +58 -33
  354. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +3 -3
  355. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +10 -14
  356. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  357. data/lib/rubocop/cop/naming/method_name.rb +41 -2
  358. data/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  359. data/lib/rubocop/cop/naming/predicate_name.rb +18 -15
  360. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +113 -0
  361. data/lib/rubocop/cop/naming/variable_name.rb +4 -2
  362. data/lib/rubocop/cop/naming/variable_number.rb +3 -3
  363. data/lib/rubocop/cop/offense.rb +64 -13
  364. data/lib/rubocop/cop/registry.rb +118 -14
  365. data/lib/rubocop/cop/security/eval.rb +6 -4
  366. data/lib/rubocop/cop/security/json_load.rb +11 -12
  367. data/lib/rubocop/cop/security/marshal_load.rb +5 -6
  368. data/lib/rubocop/cop/security/open.rb +72 -0
  369. data/lib/rubocop/cop/security/yaml_load.rb +9 -8
  370. data/lib/rubocop/cop/severity.rb +2 -11
  371. data/lib/rubocop/cop/style/access_modifier_declarations.rb +135 -0
  372. data/lib/rubocop/cop/style/accessor_grouping.rb +152 -0
  373. data/lib/rubocop/cop/style/alias.rb +51 -38
  374. data/lib/rubocop/cop/style/and_or.rb +23 -25
  375. data/lib/rubocop/cop/style/array_coercion.rb +67 -0
  376. data/lib/rubocop/cop/style/array_join.rb +10 -11
  377. data/lib/rubocop/cop/style/ascii_comments.rb +7 -4
  378. data/lib/rubocop/cop/style/attr.rb +25 -14
  379. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +8 -8
  380. data/lib/rubocop/cop/style/bare_percent_literals.rb +14 -16
  381. data/lib/rubocop/cop/style/begin_block.rb +9 -3
  382. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +141 -0
  383. data/lib/rubocop/cop/style/block_comments.rb +25 -19
  384. data/lib/rubocop/cop/style/block_delimiters.rb +131 -37
  385. data/lib/rubocop/cop/style/case_equality.rb +55 -5
  386. data/lib/rubocop/cop/style/case_like_if.rb +252 -0
  387. data/lib/rubocop/cop/style/character_literal.rb +3 -3
  388. data/lib/rubocop/cop/style/class_and_module_children.rb +43 -36
  389. data/lib/rubocop/cop/style/class_check.rb +7 -12
  390. data/lib/rubocop/cop/style/class_equality_comparison.rb +64 -0
  391. data/lib/rubocop/cop/style/class_methods.rb +19 -31
  392. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  393. data/lib/rubocop/cop/style/class_vars.rb +47 -7
  394. data/lib/rubocop/cop/style/collection_methods.rb +40 -18
  395. data/lib/rubocop/cop/style/colon_method_call.rb +11 -13
  396. data/lib/rubocop/cop/style/colon_method_definition.rb +7 -6
  397. data/lib/rubocop/cop/style/combinable_loops.rb +91 -0
  398. data/lib/rubocop/cop/style/command_literal.rb +41 -34
  399. data/lib/rubocop/cop/style/comment_annotation.rb +35 -22
  400. data/lib/rubocop/cop/style/commented_keyword.rb +24 -33
  401. data/lib/rubocop/cop/style/conditional_assignment.rb +108 -138
  402. data/lib/rubocop/cop/style/constant_visibility.rb +78 -0
  403. data/lib/rubocop/cop/style/copyright.rb +39 -28
  404. data/lib/rubocop/cop/style/date_time.rb +55 -11
  405. data/lib/rubocop/cop/style/def_with_parentheses.rb +9 -11
  406. data/lib/rubocop/cop/style/dir.rb +11 -13
  407. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +47 -0
  408. data/lib/rubocop/cop/style/documentation.rb +62 -23
  409. data/lib/rubocop/cop/style/documentation_method.rb +52 -3
  410. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  411. data/lib/rubocop/cop/style/double_negation.rb +46 -8
  412. data/lib/rubocop/cop/style/each_for_simple_loop.rb +7 -10
  413. data/lib/rubocop/cop/style/each_with_object.rb +30 -19
  414. data/lib/rubocop/cop/style/empty_block_parameter.rb +12 -12
  415. data/lib/rubocop/cop/style/empty_case_condition.rb +36 -12
  416. data/lib/rubocop/cop/style/empty_else.rb +28 -24
  417. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +13 -12
  418. data/lib/rubocop/cop/style/empty_literal.rb +34 -31
  419. data/lib/rubocop/cop/style/empty_method.rb +14 -18
  420. data/lib/rubocop/cop/style/encoding.rb +17 -14
  421. data/lib/rubocop/cop/style/end_block.rb +15 -3
  422. data/lib/rubocop/cop/style/eval_with_location.rb +15 -13
  423. data/lib/rubocop/cop/style/even_odd.rb +13 -16
  424. data/lib/rubocop/cop/style/expand_path_arguments.rb +195 -0
  425. data/lib/rubocop/cop/style/explicit_block_argument.rb +106 -0
  426. data/lib/rubocop/cop/style/exponential_notation.rb +117 -0
  427. data/lib/rubocop/cop/style/float_division.rb +93 -0
  428. data/lib/rubocop/cop/style/for.rb +48 -21
  429. data/lib/rubocop/cop/style/format_string.rb +52 -49
  430. data/lib/rubocop/cop/style/format_string_token.rb +32 -77
  431. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +131 -62
  432. data/lib/rubocop/cop/style/global_std_stream.rb +65 -0
  433. data/lib/rubocop/cop/style/global_vars.rb +5 -5
  434. data/lib/rubocop/cop/style/guard_clause.rb +69 -16
  435. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  436. data/lib/rubocop/cop/style/hash_each_methods.rb +86 -0
  437. data/lib/rubocop/cop/style/hash_like_case.rb +76 -0
  438. data/lib/rubocop/cop/style/hash_syntax.rb +39 -31
  439. data/lib/rubocop/cop/style/hash_transform_keys.rb +91 -0
  440. data/lib/rubocop/cop/style/hash_transform_values.rb +88 -0
  441. data/lib/rubocop/cop/style/identical_conditional_branches.rb +11 -15
  442. data/lib/rubocop/cop/style/if_inside_else.rb +46 -4
  443. data/lib/rubocop/cop/style/if_unless_modifier.rb +114 -46
  444. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +12 -4
  445. data/lib/rubocop/cop/style/if_with_semicolon.rb +18 -4
  446. data/lib/rubocop/cop/style/implicit_runtime_error.rb +3 -2
  447. data/lib/rubocop/cop/style/infinite_loop.rb +64 -27
  448. data/lib/rubocop/cop/style/inline_comment.rb +6 -4
  449. data/lib/rubocop/cop/style/inverse_methods.rb +78 -40
  450. data/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  451. data/lib/rubocop/cop/style/keyword_parameters_order.rb +53 -0
  452. data/lib/rubocop/cop/style/lambda.rb +15 -99
  453. data/lib/rubocop/cop/style/lambda_call.rb +17 -34
  454. data/lib/rubocop/cop/style/line_end_concatenation.rb +37 -28
  455. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +136 -35
  456. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +174 -0
  457. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +48 -0
  458. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +17 -18
  459. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +17 -5
  460. data/lib/rubocop/cop/style/method_def_parentheses.rb +27 -27
  461. data/lib/rubocop/cop/style/min_max.rb +10 -14
  462. data/lib/rubocop/cop/style/missing_else.rb +87 -31
  463. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +53 -0
  464. data/lib/rubocop/cop/style/mixin_grouping.rb +42 -42
  465. data/lib/rubocop/cop/style/mixin_usage.rb +16 -27
  466. data/lib/rubocop/cop/style/module_function.rb +85 -18
  467. data/lib/rubocop/cop/style/multiline_block_chain.rb +16 -5
  468. data/lib/rubocop/cop/style/multiline_if_modifier.rb +5 -12
  469. data/lib/rubocop/cop/style/multiline_if_then.rb +8 -13
  470. data/lib/rubocop/cop/style/multiline_memoization.rb +17 -14
  471. data/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  472. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +32 -10
  473. data/lib/rubocop/cop/style/multiline_when_then.rb +73 -0
  474. data/lib/rubocop/cop/style/multiple_comparison.rb +20 -5
  475. data/lib/rubocop/cop/style/mutable_constant.rb +130 -19
  476. data/lib/rubocop/cop/style/negated_if.rb +10 -10
  477. data/lib/rubocop/cop/style/negated_unless.rb +89 -0
  478. data/lib/rubocop/cop/style/negated_while.rb +25 -15
  479. data/lib/rubocop/cop/style/nested_modifier.rb +37 -20
  480. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +26 -24
  481. data/lib/rubocop/cop/style/nested_ternary_operator.rb +41 -3
  482. data/lib/rubocop/cop/style/next.rb +40 -43
  483. data/lib/rubocop/cop/style/nil_comparison.rb +51 -9
  484. data/lib/rubocop/cop/style/non_nil_check.rb +55 -35
  485. data/lib/rubocop/cop/style/not.rb +26 -29
  486. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +43 -25
  487. data/lib/rubocop/cop/style/numeric_literals.rb +28 -15
  488. data/lib/rubocop/cop/style/numeric_predicate.rb +19 -27
  489. data/lib/rubocop/cop/style/one_line_conditional.rb +95 -27
  490. data/lib/rubocop/cop/style/option_hash.rb +14 -3
  491. data/lib/rubocop/cop/style/optional_arguments.rb +4 -7
  492. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  493. data/lib/rubocop/cop/style/or_assignment.rb +27 -16
  494. data/lib/rubocop/cop/style/parallel_assignment.rb +20 -20
  495. data/lib/rubocop/cop/style/parentheses_around_condition.rb +50 -10
  496. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +26 -26
  497. data/lib/rubocop/cop/style/percent_q_literals.rb +10 -12
  498. data/lib/rubocop/cop/style/perl_backrefs.rb +9 -11
  499. data/lib/rubocop/cop/style/preferred_hash_methods.rb +12 -14
  500. data/lib/rubocop/cop/style/proc.rb +9 -9
  501. data/lib/rubocop/cop/style/raise_args.rb +30 -30
  502. data/lib/rubocop/cop/style/random_with_offset.rb +65 -72
  503. data/lib/rubocop/cop/style/redundant_assignment.rb +107 -0
  504. data/lib/rubocop/cop/style/redundant_begin.rb +69 -10
  505. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +7 -10
  506. data/lib/rubocop/cop/style/redundant_condition.rb +139 -0
  507. data/lib/rubocop/cop/style/redundant_conditional.rb +13 -12
  508. data/lib/rubocop/cop/style/redundant_exception.rb +28 -17
  509. data/lib/rubocop/cop/style/redundant_fetch_block.rb +113 -0
  510. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +51 -0
  511. data/lib/rubocop/cop/style/redundant_freeze.rb +29 -9
  512. data/lib/rubocop/cop/style/{unneeded_interpolation.rb → redundant_interpolation.rb} +34 -28
  513. data/lib/rubocop/cop/style/redundant_parentheses.rb +73 -39
  514. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +36 -23
  515. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +98 -0
  516. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +105 -0
  517. data/lib/rubocop/cop/style/redundant_return.rb +90 -55
  518. data/lib/rubocop/cop/style/redundant_self.rb +39 -25
  519. data/lib/rubocop/cop/style/redundant_self_assignment.rb +116 -0
  520. data/lib/rubocop/cop/style/redundant_sort.rb +162 -0
  521. data/lib/rubocop/cop/{performance → style}/redundant_sort_by.rb +10 -12
  522. data/lib/rubocop/cop/style/regexp_literal.rb +76 -34
  523. data/lib/rubocop/cop/style/rescue_modifier.rb +55 -10
  524. data/lib/rubocop/cop/style/rescue_standard_error.rb +27 -21
  525. data/lib/rubocop/cop/style/return_nil.rb +9 -9
  526. data/lib/rubocop/cop/style/safe_navigation.rb +130 -50
  527. data/lib/rubocop/cop/{performance → style}/sample.rb +28 -26
  528. data/lib/rubocop/cop/style/self_assignment.rb +27 -23
  529. data/lib/rubocop/cop/style/semicolon.rb +32 -14
  530. data/lib/rubocop/cop/style/send.rb +6 -6
  531. data/lib/rubocop/cop/style/signal_exception.rb +29 -22
  532. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  533. data/lib/rubocop/cop/style/single_line_block_params.rb +25 -3
  534. data/lib/rubocop/cop/style/single_line_methods.rb +31 -32
  535. data/lib/rubocop/cop/style/slicing_with_range.rb +37 -0
  536. data/lib/rubocop/cop/style/sole_nested_conditional.rb +66 -0
  537. data/lib/rubocop/cop/style/special_global_vars.rb +74 -33
  538. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +21 -27
  539. data/lib/rubocop/cop/style/stderr_puts.rb +17 -11
  540. data/lib/rubocop/cop/style/string_concatenation.rb +106 -0
  541. data/lib/rubocop/cop/style/string_hash_keys.rb +22 -9
  542. data/lib/rubocop/cop/style/string_literals.rb +3 -3
  543. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +1 -1
  544. data/lib/rubocop/cop/style/string_methods.rb +8 -17
  545. data/lib/rubocop/cop/style/strip.rb +41 -0
  546. data/lib/rubocop/cop/style/struct_inheritance.rb +34 -9
  547. data/lib/rubocop/cop/style/symbol_array.rb +47 -20
  548. data/lib/rubocop/cop/style/symbol_literal.rb +7 -9
  549. data/lib/rubocop/cop/style/symbol_proc.rb +32 -59
  550. data/lib/rubocop/cop/style/ternary_parentheses.rb +60 -35
  551. data/lib/rubocop/cop/style/trailing_body_on_class.rb +40 -0
  552. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +12 -62
  553. data/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  554. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +49 -25
  555. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
  556. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +90 -0
  557. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
  558. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +12 -39
  559. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +20 -23
  560. data/lib/rubocop/cop/style/trivial_accessors.rb +42 -37
  561. data/lib/rubocop/cop/style/unless_else.rb +10 -12
  562. data/lib/rubocop/cop/style/unpack_first.rb +58 -0
  563. data/lib/rubocop/cop/style/variable_interpolation.rb +12 -25
  564. data/lib/rubocop/cop/style/when_then.rb +6 -8
  565. data/lib/rubocop/cop/style/while_until_do.rb +7 -17
  566. data/lib/rubocop/cop/style/while_until_modifier.rb +9 -23
  567. data/lib/rubocop/cop/style/word_array.rb +18 -28
  568. data/lib/rubocop/cop/style/yoda_condition.rb +84 -29
  569. data/lib/rubocop/cop/style/zero_length_predicate.rb +34 -24
  570. data/lib/rubocop/cop/team.rb +160 -91
  571. data/lib/rubocop/cop/util.rb +38 -216
  572. data/lib/rubocop/cop/utils/format_string.rb +135 -0
  573. data/lib/rubocop/cop/variable_force.rb +40 -35
  574. data/lib/rubocop/cop/variable_force/assignment.rb +5 -0
  575. data/lib/rubocop/cop/variable_force/branch.rb +6 -7
  576. data/lib/rubocop/cop/variable_force/branchable.rb +2 -0
  577. data/lib/rubocop/cop/variable_force/scope.rb +7 -0
  578. data/lib/rubocop/cop/variable_force/variable.rb +23 -10
  579. data/lib/rubocop/cop/variable_force/variable_table.rb +4 -3
  580. data/lib/rubocop/cops_documentation_generator.rb +284 -0
  581. data/lib/rubocop/core_ext/string.rb +23 -0
  582. data/lib/rubocop/directive_comment.rb +32 -0
  583. data/lib/rubocop/error.rb +24 -0
  584. data/lib/rubocop/ext/processed_source.rb +18 -0
  585. data/lib/rubocop/ext/regexp_node.rb +62 -0
  586. data/lib/rubocop/file_finder.rb +43 -0
  587. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  588. data/lib/rubocop/formatter/base_formatter.rb +3 -7
  589. data/lib/rubocop/formatter/clang_style_formatter.rb +9 -6
  590. data/lib/rubocop/formatter/disabled_config_formatter.rb +69 -35
  591. data/lib/rubocop/formatter/emacs_style_formatter.rb +22 -9
  592. data/lib/rubocop/formatter/file_list_formatter.rb +2 -1
  593. data/lib/rubocop/formatter/formatter_set.rb +18 -17
  594. data/lib/rubocop/formatter/fuubar_style_formatter.rb +2 -2
  595. data/lib/rubocop/formatter/html_formatter.rb +15 -6
  596. data/lib/rubocop/formatter/json_formatter.rb +14 -13
  597. data/lib/rubocop/formatter/junit_formatter.rb +84 -0
  598. data/lib/rubocop/formatter/offense_count_formatter.rb +17 -0
  599. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  600. data/lib/rubocop/formatter/progress_formatter.rb +3 -2
  601. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  602. data/lib/rubocop/formatter/simple_text_formatter.rb +54 -11
  603. data/lib/rubocop/formatter/tap_formatter.rb +17 -6
  604. data/lib/rubocop/magic_comment.rb +15 -11
  605. data/lib/rubocop/name_similarity.rb +18 -10
  606. data/lib/rubocop/options.rb +267 -139
  607. data/lib/rubocop/path_util.rb +36 -17
  608. data/lib/rubocop/platform.rb +1 -1
  609. data/lib/rubocop/rake_task.rb +8 -9
  610. data/lib/rubocop/remote_config.rb +24 -9
  611. data/lib/rubocop/result_cache.rb +86 -31
  612. data/lib/rubocop/rspec/cop_helper.rb +14 -38
  613. data/lib/rubocop/rspec/expect_offense.rb +168 -14
  614. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +1 -5
  615. data/lib/rubocop/rspec/shared_contexts.rb +93 -47
  616. data/lib/rubocop/rspec/support.rb +5 -1
  617. data/lib/rubocop/runner.rb +146 -77
  618. data/lib/rubocop/string_interpreter.rb +11 -8
  619. data/lib/rubocop/target_finder.rb +94 -95
  620. data/lib/rubocop/target_ruby.rb +160 -0
  621. data/lib/rubocop/version.rb +15 -5
  622. data/lib/rubocop/yaml_duplication_checker.rb +40 -0
  623. metadata +265 -192
  624. data/config/disabled.yml +0 -128
  625. data/config/enabled.yml +0 -1989
  626. data/lib/rubocop/ast/builder.rb +0 -72
  627. data/lib/rubocop/ast/node.rb +0 -634
  628. data/lib/rubocop/ast/node/and_node.rb +0 -37
  629. data/lib/rubocop/ast/node/args_node.rb +0 -29
  630. data/lib/rubocop/ast/node/array_node.rb +0 -57
  631. data/lib/rubocop/ast/node/block_node.rb +0 -116
  632. data/lib/rubocop/ast/node/case_node.rb +0 -64
  633. data/lib/rubocop/ast/node/def_node.rb +0 -71
  634. data/lib/rubocop/ast/node/ensure_node.rb +0 -25
  635. data/lib/rubocop/ast/node/for_node.rb +0 -61
  636. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  637. data/lib/rubocop/ast/node/if_node.rb +0 -146
  638. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  639. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  640. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -23
  641. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  642. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  643. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  644. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -174
  645. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -89
  646. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  647. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  648. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  649. data/lib/rubocop/ast/node/or_node.rb +0 -37
  650. data/lib/rubocop/ast/node/pair_node.rb +0 -64
  651. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  652. data/lib/rubocop/ast/node/resbody_node.rb +0 -25
  653. data/lib/rubocop/ast/node/send_node.rb +0 -45
  654. data/lib/rubocop/ast/node/str_node.rb +0 -14
  655. data/lib/rubocop/ast/node/super_node.rb +0 -21
  656. data/lib/rubocop/ast/node/symbol_node.rb +0 -20
  657. data/lib/rubocop/ast/node/until_node.rb +0 -43
  658. data/lib/rubocop/ast/node/when_node.rb +0 -61
  659. data/lib/rubocop/ast/node/while_node.rb +0 -43
  660. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  661. data/lib/rubocop/ast/sexp.rb +0 -16
  662. data/lib/rubocop/ast/traversal.rb +0 -171
  663. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  664. data/lib/rubocop/cop/layout/align_hash.rb +0 -235
  665. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -208
  666. data/lib/rubocop/cop/layout/tab.rb +0 -60
  667. data/lib/rubocop/cop/layout/trailing_blank_lines.rb +0 -80
  668. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  669. data/lib/rubocop/cop/lint/handle_exceptions.rb +0 -56
  670. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  671. data/lib/rubocop/cop/metrics/line_length.rb +0 -171
  672. data/lib/rubocop/cop/mixin/classish_length.rb +0 -36
  673. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  674. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  675. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  676. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -39
  677. data/lib/rubocop/cop/performance/caller.rb +0 -69
  678. data/lib/rubocop/cop/performance/case_when_splat.rb +0 -172
  679. data/lib/rubocop/cop/performance/casecmp.rb +0 -108
  680. data/lib/rubocop/cop/performance/compare_with_block.rb +0 -117
  681. data/lib/rubocop/cop/performance/count.rb +0 -101
  682. data/lib/rubocop/cop/performance/detect.rb +0 -110
  683. data/lib/rubocop/cop/performance/double_start_end_with.rb +0 -94
  684. data/lib/rubocop/cop/performance/end_with.rb +0 -55
  685. data/lib/rubocop/cop/performance/fixed_size.rb +0 -56
  686. data/lib/rubocop/cop/performance/flat_map.rb +0 -76
  687. data/lib/rubocop/cop/performance/hash_each_methods.rb +0 -129
  688. data/lib/rubocop/cop/performance/lstrip_rstrip.rb +0 -44
  689. data/lib/rubocop/cop/performance/range_include.rb +0 -41
  690. data/lib/rubocop/cop/performance/redundant_block_call.rb +0 -93
  691. data/lib/rubocop/cop/performance/redundant_match.rb +0 -56
  692. data/lib/rubocop/cop/performance/redundant_merge.rb +0 -169
  693. data/lib/rubocop/cop/performance/regexp_match.rb +0 -224
  694. data/lib/rubocop/cop/performance/reverse_each.rb +0 -40
  695. data/lib/rubocop/cop/performance/size.rb +0 -71
  696. data/lib/rubocop/cop/performance/start_with.rb +0 -58
  697. data/lib/rubocop/cop/performance/string_replacement.rb +0 -170
  698. data/lib/rubocop/cop/performance/times_map.rb +0 -71
  699. data/lib/rubocop/cop/performance/unfreeze_string.rb +0 -50
  700. data/lib/rubocop/cop/performance/uri_default_parser.rb +0 -47
  701. data/lib/rubocop/cop/rails/action_filter.rb +0 -117
  702. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -68
  703. data/lib/rubocop/cop/rails/application_job.rb +0 -40
  704. data/lib/rubocop/cop/rails/application_record.rb +0 -40
  705. data/lib/rubocop/cop/rails/blank.rb +0 -142
  706. data/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -82
  707. data/lib/rubocop/cop/rails/date.rb +0 -136
  708. data/lib/rubocop/cop/rails/delegate.rb +0 -130
  709. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -51
  710. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -82
  711. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -45
  712. data/lib/rubocop/cop/rails/environment_comparison.rb +0 -66
  713. data/lib/rubocop/cop/rails/exit.rb +0 -68
  714. data/lib/rubocop/cop/rails/file_path.rb +0 -72
  715. data/lib/rubocop/cop/rails/find_by.rb +0 -52
  716. data/lib/rubocop/cop/rails/find_each.rb +0 -47
  717. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -25
  718. data/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -84
  719. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -102
  720. data/lib/rubocop/cop/rails/inverse_of.rb +0 -218
  721. data/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -112
  722. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  723. data/lib/rubocop/cop/rails/output.rb +0 -32
  724. data/lib/rubocop/cop/rails/output_safety.rb +0 -93
  725. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -107
  726. data/lib/rubocop/cop/rails/presence.rb +0 -118
  727. data/lib/rubocop/cop/rails/present.rb +0 -143
  728. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -65
  729. data/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -133
  730. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -88
  731. data/lib/rubocop/cop/rails/request_referer.rb +0 -55
  732. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -281
  733. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -90
  734. data/lib/rubocop/cop/rails/save_bang.rb +0 -162
  735. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  736. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -70
  737. data/lib/rubocop/cop/rails/time_zone.rb +0 -198
  738. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -95
  739. data/lib/rubocop/cop/rails/unknown_env.rb +0 -63
  740. data/lib/rubocop/cop/rails/validation.rb +0 -64
  741. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -202
  742. data/lib/rubocop/cop/style/method_missing.rb +0 -68
  743. data/lib/rubocop/cop/style/trailing_comma_in_literal.rb +0 -75
  744. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  745. data/lib/rubocop/node_pattern.rb +0 -560
  746. data/lib/rubocop/processed_source.rb +0 -150
  747. data/lib/rubocop/rspec/shared_examples.rb +0 -92
  748. data/lib/rubocop/string_util.rb +0 -158
  749. data/lib/rubocop/token.rb +0 -103
@@ -1,174 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # Common functionality for nodes that are a kind of method dispatch:
6
- # `send`, `csend`, `super`, `zsuper`, `yield`
7
- module MethodDispatchNode
8
- extend NodePattern::Macros
9
- include MethodIdentifierPredicates
10
-
11
- # The receiving node of the method dispatch.
12
- #
13
- # @return [Node, nil] the receiver of the dispatched method or `nil`
14
- def receiver
15
- node_parts[0]
16
- end
17
-
18
- # The name of the dispatched method as a symbol.
19
- #
20
- # @return [Symbol] the name of the dispatched method
21
- def method_name
22
- node_parts[1]
23
- end
24
-
25
- # An array containing the arguments of the dispatched method.
26
- #
27
- # @return [Array<Node>] the arguments of the dispatched method
28
- def arguments
29
- node_parts[2..-1]
30
- end
31
-
32
- # Checks whether the dispatched method is a macro method. A macro method
33
- # is defined as a method that sits in a class, module, or block body and
34
- # has an implicit receiver.
35
- #
36
- # @note This does not include DSLs that use nested blocks, like RSpec
37
- #
38
- # @return [Boolean] whether the dispatched method is a macro method
39
- def macro?
40
- !receiver && macro_scope?
41
- end
42
-
43
- # Checks whether the dispatched method is a bare access modifier affects
44
- # all methods defined after the macro.
45
- #
46
- # @return [Boolean] whether the dispatched method is access modifier
47
- def access_modifier?
48
- macro? && bare_access_modifier?
49
- end
50
-
51
- # Checks whether the name of the dispatched method matches the argument
52
- # and has an implicit receiver.
53
- #
54
- # @param [Symbol, String] name the method name to check for
55
- # @return [Boolean] whether the method name matches the argument
56
- def command?(name)
57
- !receiver && method?(name)
58
- end
59
-
60
- # Checks whether the dispatched method is a setter method.
61
- #
62
- # @return [Boolean] whether the dispatched method is a setter
63
- def setter_method?
64
- loc.respond_to?(:operator) && loc.operator
65
- end
66
-
67
- # Checks whether the dispatched method uses a dot to connect the
68
- # receiver and the method name.
69
- #
70
- # This is useful for comparison operators, which can be called either
71
- # with or without a dot, i.e. `foo == bar` or `foo.== bar`.
72
- #
73
- # @return [Boolean] whether the method was called with a connecting dot
74
- def dot?
75
- loc.respond_to?(:dot) && loc.dot && loc.dot.is?('.')
76
- end
77
-
78
- # Checks whether the dispatched method uses a double colon to connect the
79
- # receiver and the method name.
80
- #
81
- # @return [Boolean] whether the method was called with a connecting dot
82
- def double_colon?
83
- loc.respond_to?(:dot) && loc.dot && loc.dot.is?('::')
84
- end
85
-
86
- # Checks whether the *explicit* receiver of this method dispatch is
87
- # `self`.
88
- #
89
- # @return [Boolean] whether the receiver of this method dispatch is `self`
90
- def self_receiver?
91
- receiver && receiver.self_type?
92
- end
93
-
94
- # Checks whether the *explicit* receiver of this method dispatch is a
95
- # `const` node.
96
- #
97
- # @return [Boolean] whether the receiver of this method dispatch
98
- # is a `const` node
99
- def const_receiver?
100
- receiver && receiver.const_type?
101
- end
102
-
103
- # Checks whether the method dispatch is the implicit form of `#call`,
104
- # e.g. `foo.(bar)`.
105
- #
106
- # @return [Boolean] whether the method is the implicit form of `#call`
107
- def implicit_call?
108
- method?(:call) && !loc.selector
109
- end
110
-
111
- # Whether this method dispatch has an explicit block.
112
- #
113
- # @return [Boolean] whether the dispatched method has a block
114
- def block_literal?
115
- parent && parent.block_type? && eql?(parent.send_node)
116
- end
117
-
118
- # The `block` node associated with this method dispatch, if any.
119
- #
120
- # @return [BlockNode, nil] the `block` node associated with this method
121
- # call or `nil`
122
- def block_node
123
- parent if block_literal?
124
- end
125
-
126
- # Checks if this node is part of a chain of `def` modifiers.
127
- #
128
- # @example
129
- #
130
- # private def foo; end
131
- #
132
- # @return [Boolean] whether the dispatched method is a `def` modifier
133
- def def_modifier?
134
- send_type? &&
135
- [self, *each_descendant(:send)].any?(&:adjacent_def_modifier?)
136
- end
137
-
138
- private
139
-
140
- def_node_matcher :macro_scope?, <<-PATTERN
141
- {^{({sclass class module block} ...) class_constructor?}
142
- ^^{({sclass class module block} ... (begin ...)) class_constructor?}
143
- ^#macro_kwbegin_wrapper?
144
- #root_node?}
145
- PATTERN
146
-
147
- # Check if a node's parent is a kwbegin wrapper within a macro scope
148
- #
149
- # @param parent [Node] parent of the node being checked
150
- #
151
- # @return [Boolean] true if the parent is a kwbegin in a macro scope
152
- def macro_kwbegin_wrapper?(parent)
153
- parent.kwbegin_type? && macro_scope?(parent)
154
- end
155
-
156
- # Check if a node does not have a parent
157
- #
158
- # @param node [Node]
159
- #
160
- # @return [Boolean] if the parent is nil
161
- def root_node?(node)
162
- node.parent.nil?
163
- end
164
-
165
- def_node_matcher :adjacent_def_modifier?, <<-PATTERN
166
- (send nil? _ ({def defs} ...))
167
- PATTERN
168
-
169
- def_node_matcher :bare_access_modifier?, <<-PATTERN
170
- (send nil? {:public :protected :private :module_function})
171
- PATTERN
172
- end
173
- end
174
- end
@@ -1,89 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # Common predicates for nodes that reference method identifiers:
6
- # `send`, `csend`, `def`, `defs`, `super`, `zsuper`
7
- #
8
- # @note this mixin expects `#method_name` and `#receiver` to be implemented
9
- module MethodIdentifierPredicates
10
- ENUMERATOR_METHODS = %i[collect collect_concat detect downto each
11
- find find_all find_index inject loop map!
12
- map reduce reject reject! reverse_each select
13
- select! times upto].freeze
14
-
15
- # Checks whether the method name matches the argument.
16
- #
17
- # @param [Symbol, String] name the method name to check for
18
- # @return [Boolean] whether the method name matches the argument
19
- def method?(name)
20
- method_name == name.to_sym
21
- end
22
-
23
- # Checks whether the method is an operator method.
24
- #
25
- # @return [Boolean] whether the method is an operator
26
- def operator_method?
27
- RuboCop::Cop::Util::OPERATOR_METHODS.include?(method_name)
28
- end
29
-
30
- # Checks whether the method is a comparison method.
31
- #
32
- # @return [Boolean] whether the method is a comparison
33
- def comparison_method?
34
- Node::COMPARISON_OPERATORS.include?(method_name)
35
- end
36
-
37
- # Checks whether the method is an assignment method.
38
- #
39
- # @return [Boolean] whether the method is an assignment
40
- def assignment_method?
41
- !comparison_method? && method_name.to_s.end_with?('=')
42
- end
43
-
44
- # Checks whether the method is an enumerator method.
45
- #
46
- # @return [Boolean] whether the method is an enumerator
47
- def enumerator_method?
48
- ENUMERATOR_METHODS.include?(method_name) ||
49
- method_name.to_s.start_with?('each_')
50
- end
51
-
52
- # Checks whether the method is a predicate method.
53
- #
54
- # @return [Boolean] whether the method is a predicate method
55
- def predicate_method?
56
- method_name.to_s.end_with?('?')
57
- end
58
-
59
- # Checks whether the method is a bang method.
60
- #
61
- # @return [Boolean] whether the method is a bang method
62
- def bang_method?
63
- method_name.to_s.end_with?('!')
64
- end
65
-
66
- # Checks whether the method is a camel case method,
67
- # e.g. `Integer()`.
68
- #
69
- # @return [Boolean] whether the method is a camel case method
70
- def camel_case_method?
71
- method_name.to_s =~ /\A[A-Z]/
72
- end
73
-
74
- # Checks whether the *explicit* receiver of this node is `self`.
75
- #
76
- # @return [Boolean] whether the receiver of this node is `self`
77
- def self_receiver?
78
- receiver && receiver.self_type?
79
- end
80
-
81
- # Checks whether the *explicit* receiver of node is a `const` node.
82
- #
83
- # @return [Boolean] whether the receiver of this node is a `const` node
84
- def const_receiver?
85
- receiver && receiver.const_type?
86
- end
87
- end
88
- end
89
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # Common functionality for nodes that can be used as modifiers:
6
- # `if`, `while`, `until`
7
- module ModifierNode
8
- # Checks whether the node is in a modifier form, i.e. a condition
9
- # trailing behind an expression.
10
- #
11
- # @return [Boolean] whether the node is a modifier
12
- def modifier_form?
13
- loc.end.nil?
14
- end
15
- end
16
- end
17
- end
@@ -1,61 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # Common functionality for nodes that are parameterized:
6
- # `send`, `super`, `zsuper`, `def`, `defs`
7
- module ParameterizedNode
8
- # Checks whether this node's arguments are wrapped in parentheses.
9
- #
10
- # @return [Boolean] whether this node's arguments are
11
- # wrapped in parentheses
12
- def parenthesized?
13
- loc.end && loc.end.is?(')')
14
- end
15
-
16
- # A shorthand for getting the first argument of the node.
17
- # Equivalent to `arguments.first`.
18
- #
19
- # @return [Node, nil] the first argument of the node,
20
- # or `nil` if there are no arguments
21
- def first_argument
22
- arguments[0]
23
- end
24
-
25
- # A shorthand for getting the last argument of the node.
26
- # Equivalent to `arguments.last`.
27
- #
28
- # @return [Node, nil] the last argument of the node,
29
- # or `nil` if there are no arguments
30
- def last_argument
31
- arguments[-1]
32
- end
33
-
34
- # Checks whether this node has any arguments.
35
- #
36
- # @return [Boolean] whether this node has any arguments
37
- def arguments?
38
- !arguments.empty?
39
- end
40
-
41
- # Checks whether any argument of the node is a splat
42
- # argument, i.e. `*splat`.
43
- #
44
- # @return [Boolean] whether the node is a splat argument
45
- def splat_argument?
46
- arguments? &&
47
- (arguments.any?(&:splat_type?) || arguments.any?(&:restarg_type?))
48
- end
49
- alias rest_argument? splat_argument?
50
-
51
- # Whether the last argument of the node is a block pass,
52
- # i.e. `&block`.
53
- #
54
- # @return [Boolean] whether the last argument of the node is a block pass
55
- def block_argument?
56
- arguments? &&
57
- (last_argument.block_pass_type? || last_argument.blockarg_type?)
58
- end
59
- end
60
- end
61
- end
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # Common functionality for nodes that are predicates:
6
- # `or`, `and` ...
7
- module PredicateOperatorNode
8
- LOGICAL_AND = '&&'.freeze
9
- SEMANTIC_AND = 'and'.freeze
10
- LOGICAL_OR = '||'.freeze
11
- SEMANTIC_OR = 'or'.freeze
12
-
13
- # Returns the operator as a string.
14
- #
15
- # @return [String] the operator
16
- def operator
17
- loc.operator.source
18
- end
19
-
20
- # Checks whether this is a logical operator.
21
- #
22
- # @return [Boolean] whether this is a logical operator
23
- def logical_operator?
24
- operator == LOGICAL_AND || operator == LOGICAL_OR
25
- end
26
-
27
- # Checks whether this is a semantic operator.
28
- #
29
- # @return [Boolean] whether this is a semantic operator
30
- def semantic_operator?
31
- operator == SEMANTIC_AND || operator == SEMANTIC_OR
32
- end
33
- end
34
- end
35
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # A node extension for `or` nodes. This will be used in place of a plain
6
- # node when the builder constructs the AST, making its methods available
7
- # to all `or` nodes within RuboCop.
8
- class OrNode < Node
9
- include BinaryOperatorNode
10
- include PredicateOperatorNode
11
-
12
- # Returns the alternate operator of the `or` as a string.
13
- # Returns `or` for `||` and vice versa.
14
- #
15
- # @return [String] the alternate of the `or` operator
16
- def alternate_operator
17
- logical_operator? ? SEMANTIC_OR : LOGICAL_OR
18
- end
19
-
20
- # Returns the inverse keyword of the `or` node as a string.
21
- # Returns `and` for `or` and `&&` for `||`.
22
- #
23
- # @return [String] the inverse of the `or` operator
24
- def inverse_operator
25
- logical_operator? ? LOGICAL_AND : SEMANTIC_AND
26
- end
27
-
28
- # Custom destructuring method. This can be used to normalize
29
- # destructuring for different variations of the node.
30
- #
31
- # @return [Array<Node>] the different parts of the `or` predicate
32
- def node_parts
33
- to_a
34
- end
35
- end
36
- end
37
- end
@@ -1,64 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module RuboCop
4
- module AST
5
- # A node extension for `pair` nodes. This will be used in place of a plain
6
- # node when the builder constructs the AST, making its methods available
7
- # to all `pair` nodes within RuboCop.
8
- class PairNode < Node
9
- include HashElementNode
10
-
11
- HASH_ROCKET = '=>'.freeze
12
- SPACED_HASH_ROCKET = ' => '.freeze
13
- COLON = ':'.freeze
14
- SPACED_COLON = ': '.freeze
15
-
16
- # Checks whether the `pair` uses a hash rocket delimiter.
17
- #
18
- # @return [Boolean] whether this `pair` uses a hash rocket delimiter
19
- def hash_rocket?
20
- loc.operator.is?(HASH_ROCKET)
21
- end
22
-
23
- # Checks whether the `pair` uses a colon delimiter.
24
- #
25
- # @return [Boolean] whether this `pair` uses a colon delimiter
26
- def colon?
27
- loc.operator.is?(COLON)
28
- end
29
-
30
- # Returns the delimiter of the `pair` as a string. Returns `=>` for a
31
- # colon delimited `pair`, and `:` for a hash rocket delimited `pair`.
32
- #
33
- # @param [Boolean] with_spacing whether to include spacing
34
- # @return [String] the delimiter of the `pair`
35
- def delimiter(with_spacing = false)
36
- if with_spacing
37
- hash_rocket? ? SPACED_HASH_ROCKET : SPACED_COLON
38
- else
39
- hash_rocket? ? HASH_ROCKET : COLON
40
- end
41
- end
42
-
43
- # Returns the inverse delimiter of the `pair` as a string.
44
- #
45
- # @param [Boolean] with_spacing whether to include spacing
46
- # @return [String] the inverse delimiter of the `pair`
47
- def inverse_delimiter(with_spacing = false)
48
- if with_spacing
49
- hash_rocket? ? SPACED_COLON : SPACED_HASH_ROCKET
50
- else
51
- hash_rocket? ? COLON : HASH_ROCKET
52
- end
53
- end
54
-
55
- # Custom destructuring method. This is used to normalize the branches
56
- # for `pair` and `kwsplat` nodes, to add duck typing to `hash` elements.
57
- #
58
- # @return [Array<Node>] the different parts of the `pair`
59
- def node_parts
60
- to_a
61
- end
62
- end
63
- end
64
- end