rubocop 0.76.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (867) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +72 -39
  4. data/assets/output.html.erb +1 -1
  5. data/config/default.yml +2044 -451
  6. data/config/obsoletion.yml +233 -0
  7. data/exe/rubocop +15 -9
  8. data/lib/rubocop/arguments_env.rb +17 -0
  9. data/lib/rubocop/arguments_file.rb +17 -0
  10. data/lib/rubocop/ast_aliases.rb +8 -0
  11. data/lib/rubocop/cache_config.rb +29 -0
  12. data/lib/rubocop/cached_data.rb +4 -4
  13. data/lib/rubocop/cli/command/auto_generate_config.rb +154 -0
  14. data/lib/rubocop/cli/command/base.rb +35 -0
  15. data/lib/rubocop/cli/command/execute_runner.rb +105 -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/show_docs_url.rb +48 -0
  19. data/lib/rubocop/cli/command/suggest_extensions.rb +126 -0
  20. data/lib/rubocop/cli/command/version.rb +18 -0
  21. data/lib/rubocop/cli/command.rb +22 -0
  22. data/lib/rubocop/cli/environment.rb +22 -0
  23. data/lib/rubocop/cli.rb +87 -233
  24. data/lib/rubocop/comment_config.rb +109 -94
  25. data/lib/rubocop/config.rb +119 -44
  26. data/lib/rubocop/config_finder.rb +68 -0
  27. data/lib/rubocop/config_loader.rb +126 -140
  28. data/lib/rubocop/config_loader_resolver.rb +124 -39
  29. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  30. data/lib/rubocop/config_obsoletion/changed_parameter.rb +26 -0
  31. data/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  32. data/lib/rubocop/config_obsoletion/extracted_cop.rb +46 -0
  33. data/lib/rubocop/config_obsoletion/parameter_rule.rb +48 -0
  34. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  35. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  36. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  37. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  38. data/lib/rubocop/config_obsoletion.rb +72 -186
  39. data/lib/rubocop/config_regeneration.rb +33 -0
  40. data/lib/rubocop/config_store.rb +31 -7
  41. data/lib/rubocop/config_validator.rb +135 -111
  42. data/lib/rubocop/cop/autocorrect_logic.rb +61 -37
  43. data/lib/rubocop/cop/badge.rb +27 -32
  44. data/lib/rubocop/cop/base.rb +482 -0
  45. data/lib/rubocop/cop/bundler/duplicated_gem.rb +34 -14
  46. data/lib/rubocop/cop/bundler/gem_comment.rb +121 -14
  47. data/lib/rubocop/cop/bundler/gem_filename.rb +103 -0
  48. data/lib/rubocop/cop/bundler/gem_version.rb +133 -0
  49. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +45 -28
  50. data/lib/rubocop/cop/bundler/ordered_gems.rb +7 -18
  51. data/lib/rubocop/cop/commissioner.rb +112 -75
  52. data/lib/rubocop/cop/cop.rb +98 -207
  53. data/lib/rubocop/cop/corrector.rb +85 -119
  54. data/lib/rubocop/cop/correctors/alignment_corrector.rb +16 -26
  55. data/lib/rubocop/cop/correctors/condition_corrector.rb +4 -7
  56. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +7 -9
  57. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +10 -11
  58. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +8 -7
  59. data/lib/rubocop/cop/correctors/if_then_corrector.rb +55 -0
  60. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +7 -7
  61. data/lib/rubocop/cop/correctors/line_break_corrector.rb +16 -13
  62. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +56 -11
  63. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +10 -16
  64. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +64 -9
  65. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +13 -24
  66. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +9 -11
  67. data/lib/rubocop/cop/correctors/require_library_corrector.rb +23 -0
  68. data/lib/rubocop/cop/correctors/space_corrector.rb +3 -6
  69. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +7 -9
  70. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +16 -19
  71. data/lib/rubocop/cop/documentation.rb +39 -0
  72. data/lib/rubocop/cop/exclude_limit.rb +26 -0
  73. data/lib/rubocop/cop/force.rb +2 -1
  74. data/lib/rubocop/cop/gemspec/dependency_version.rb +154 -0
  75. data/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
  76. data/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
  77. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +11 -26
  78. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +8 -21
  79. data/lib/rubocop/cop/gemspec/require_mfa.rb +145 -0
  80. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +69 -27
  81. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +7 -12
  82. data/lib/rubocop/cop/generator/configuration_injector.rb +5 -6
  83. data/lib/rubocop/cop/generator/require_file_injector.rb +4 -7
  84. data/lib/rubocop/cop/generator.rb +38 -44
  85. data/lib/rubocop/cop/ignored_node.rb +1 -3
  86. data/lib/rubocop/cop/internal_affairs/cop_description.rb +98 -0
  87. data/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
  88. data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
  89. data/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
  90. data/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
  91. data/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +34 -0
  92. data/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +46 -0
  93. data/lib/rubocop/cop/internal_affairs/location_expression.rb +37 -0
  94. data/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +60 -0
  95. data/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +80 -0
  96. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
  97. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +4 -4
  98. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +147 -0
  99. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +11 -14
  100. data/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
  101. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +12 -10
  102. data/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
  103. data/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -0
  104. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
  105. data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +73 -0
  106. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +13 -8
  107. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +12 -9
  108. data/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +47 -0
  109. data/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +66 -0
  110. data/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
  111. data/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
  112. data/lib/rubocop/cop/internal_affairs/undefined_config.rb +73 -0
  113. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +6 -6
  114. data/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
  115. data/lib/rubocop/cop/internal_affairs.rb +24 -1
  116. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +12 -10
  117. data/lib/rubocop/cop/layout/argument_alignment.rb +158 -0
  118. data/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  119. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +10 -9
  120. data/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
  121. data/lib/rubocop/cop/layout/block_alignment.rb +56 -60
  122. data/lib/rubocop/cop/layout/block_end_newline.rb +33 -13
  123. data/lib/rubocop/cop/layout/case_indentation.rb +88 -30
  124. data/lib/rubocop/cop/layout/class_structure.rb +90 -91
  125. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +5 -7
  126. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +26 -36
  127. data/lib/rubocop/cop/layout/comment_indentation.rb +56 -29
  128. data/lib/rubocop/cop/layout/condition_position.rb +17 -9
  129. data/lib/rubocop/cop/layout/def_end_alignment.rb +10 -11
  130. data/lib/rubocop/cop/layout/dot_position.rb +65 -27
  131. data/lib/rubocop/cop/layout/else_alignment.rb +29 -7
  132. data/lib/rubocop/cop/layout/empty_comment.rb +30 -30
  133. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +61 -37
  134. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +13 -13
  135. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  136. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +161 -39
  137. data/lib/rubocop/cop/layout/empty_lines.rb +10 -13
  138. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +34 -38
  139. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +14 -10
  140. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +139 -0
  141. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +3 -6
  142. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +8 -9
  143. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +12 -15
  144. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +16 -19
  145. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +3 -6
  146. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +12 -15
  147. data/lib/rubocop/cop/layout/end_alignment.rb +34 -25
  148. data/lib/rubocop/cop/layout/end_of_line.rb +13 -13
  149. data/lib/rubocop/cop/layout/extra_spacing.rb +38 -48
  150. data/lib/rubocop/cop/layout/{indent_first_argument.rb → first_argument_indentation.rb} +80 -42
  151. data/lib/rubocop/cop/layout/{indent_first_array_element.rb → first_array_element_indentation.rb} +41 -28
  152. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +43 -11
  153. data/lib/rubocop/cop/layout/{indent_first_hash_element.rb → first_hash_element_indentation.rb} +86 -31
  154. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +51 -8
  155. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +66 -14
  156. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +54 -8
  157. data/lib/rubocop/cop/layout/{indent_first_parameter.rb → first_parameter_indentation.rb} +13 -12
  158. data/lib/rubocop/cop/layout/{align_hash.rb → hash_alignment.rb} +86 -52
  159. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +56 -34
  160. data/lib/rubocop/cop/layout/heredoc_indentation.rb +162 -0
  161. data/lib/rubocop/cop/layout/indentation_consistency.rb +10 -7
  162. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  163. data/lib/rubocop/cop/layout/indentation_width.rb +51 -26
  164. data/lib/rubocop/cop/layout/initial_indentation.rb +9 -13
  165. data/lib/rubocop/cop/layout/leading_comment_space.rb +48 -15
  166. data/lib/rubocop/cop/layout/{leading_blank_lines.rb → leading_empty_lines.rb} +7 -12
  167. data/lib/rubocop/cop/layout/line_continuation_leading_space.rb +136 -0
  168. data/lib/rubocop/cop/layout/line_continuation_spacing.rb +140 -0
  169. data/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +141 -0
  170. data/lib/rubocop/cop/layout/line_length.rb +276 -0
  171. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +9 -12
  172. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +53 -8
  173. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +41 -19
  174. data/lib/rubocop/cop/layout/multiline_block_layout.rb +55 -40
  175. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +9 -16
  176. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +53 -10
  177. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +65 -15
  178. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +9 -12
  179. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +52 -24
  180. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +9 -12
  181. data/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +101 -0
  182. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +28 -15
  183. data/lib/rubocop/cop/layout/{align_parameters.rb → parameter_alignment.rb} +8 -7
  184. data/lib/rubocop/cop/layout/redundant_line_break.rb +138 -0
  185. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +61 -41
  186. data/lib/rubocop/cop/layout/single_line_block_chain.rb +64 -0
  187. data/lib/rubocop/cop/layout/space_after_colon.rb +11 -9
  188. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  189. data/lib/rubocop/cop/layout/space_after_method_name.rb +7 -10
  190. data/lib/rubocop/cop/layout/space_after_not.rb +11 -12
  191. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  192. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +47 -54
  193. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +20 -23
  194. data/lib/rubocop/cop/layout/space_around_keyword.rb +64 -28
  195. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  196. data/lib/rubocop/cop/layout/space_around_operators.rb +110 -34
  197. data/lib/rubocop/cop/layout/space_before_block_braces.rb +55 -20
  198. data/lib/rubocop/cop/layout/space_before_brackets.rb +73 -0
  199. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  200. data/lib/rubocop/cop/layout/space_before_comment.rb +11 -12
  201. data/lib/rubocop/cop/layout/space_before_first_arg.rb +22 -16
  202. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  203. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +19 -23
  204. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +54 -61
  205. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +8 -15
  206. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +63 -50
  207. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +52 -51
  208. data/lib/rubocop/cop/layout/space_inside_parens.rb +92 -29
  209. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +38 -9
  210. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +9 -18
  211. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +27 -34
  212. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +18 -18
  213. data/lib/rubocop/cop/layout/{trailing_blank_lines.rb → trailing_empty_lines.rb} +20 -25
  214. data/lib/rubocop/cop/layout/trailing_whitespace.rb +73 -19
  215. data/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  216. data/lib/rubocop/cop/legacy/corrector.rb +27 -0
  217. data/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  218. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +44 -11
  219. data/lib/rubocop/cop/lint/ambiguous_operator.rb +64 -12
  220. data/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +111 -0
  221. data/lib/rubocop/cop/lint/ambiguous_range.rb +105 -0
  222. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +44 -7
  223. data/lib/rubocop/cop/lint/assignment_in_condition.rb +20 -8
  224. data/lib/rubocop/cop/lint/big_decimal_new.rb +10 -10
  225. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +68 -0
  226. data/lib/rubocop/cop/lint/boolean_symbol.rb +30 -5
  227. data/lib/rubocop/cop/lint/circular_argument_reference.rb +2 -2
  228. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  229. data/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
  230. data/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
  231. data/lib/rubocop/cop/lint/debugger.rb +60 -26
  232. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +76 -69
  233. data/lib/rubocop/cop/lint/deprecated_constants.rb +88 -0
  234. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +154 -0
  235. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +33 -4
  236. data/lib/rubocop/cop/lint/duplicate_branch.rb +153 -0
  237. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +4 -14
  238. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  239. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +3 -5
  240. data/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
  241. data/lib/rubocop/cop/lint/duplicate_match_pattern.rb +102 -0
  242. data/lib/rubocop/cop/lint/duplicate_methods.rb +64 -35
  243. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +94 -0
  244. data/lib/rubocop/cop/lint/duplicate_require.rb +56 -0
  245. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  246. data/lib/rubocop/cop/lint/each_with_object_argument.rb +6 -4
  247. data/lib/rubocop/cop/lint/else_layout.rb +33 -9
  248. data/lib/rubocop/cop/lint/empty_block.rb +94 -0
  249. data/lib/rubocop/cop/lint/empty_class.rb +95 -0
  250. data/lib/rubocop/cop/lint/empty_conditional_body.rb +177 -0
  251. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -8
  252. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  253. data/lib/rubocop/cop/lint/empty_file.rb +48 -0
  254. data/lib/rubocop/cop/lint/empty_in_pattern.rb +64 -0
  255. data/lib/rubocop/cop/lint/empty_interpolation.rb +5 -8
  256. data/lib/rubocop/cop/lint/empty_when.rb +34 -9
  257. data/lib/rubocop/cop/lint/ensure_return.rb +29 -16
  258. data/lib/rubocop/cop/lint/erb_new_arguments.rb +28 -30
  259. data/lib/rubocop/cop/lint/flip_flop.rb +9 -3
  260. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  261. data/lib/rubocop/cop/lint/float_out_of_range.rb +3 -4
  262. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +57 -15
  263. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +47 -0
  264. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +30 -34
  265. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  266. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +8 -8
  267. data/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +79 -0
  268. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +17 -23
  269. data/lib/rubocop/cop/lint/inherit_exception.rb +32 -36
  270. data/lib/rubocop/cop/lint/interpolation_check.rb +28 -9
  271. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
  272. data/lib/rubocop/cop/lint/literal_as_condition.rb +43 -17
  273. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +93 -18
  274. data/lib/rubocop/cop/lint/loop.rb +32 -9
  275. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +51 -24
  276. data/lib/rubocop/cop/lint/missing_super.rb +130 -0
  277. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  278. data/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  279. data/lib/rubocop/cop/lint/nested_method_definition.rb +71 -31
  280. data/lib/rubocop/cop/lint/nested_percent_literal.rb +19 -7
  281. data/lib/rubocop/cop/lint/next_without_accumulator.rb +26 -6
  282. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  283. data/lib/rubocop/cop/lint/non_atomic_file_operation.rb +162 -0
  284. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +185 -0
  285. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +13 -10
  286. data/lib/rubocop/cop/lint/number_conversion.rb +137 -27
  287. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
  288. data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +42 -0
  289. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +16 -20
  290. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +128 -0
  291. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +42 -14
  292. data/lib/rubocop/cop/lint/percent_string_array.rb +19 -14
  293. data/lib/rubocop/cop/lint/percent_symbol_array.rb +14 -15
  294. data/lib/rubocop/cop/lint/raise_exception.rb +91 -0
  295. data/lib/rubocop/cop/lint/rand_one.rb +6 -5
  296. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +191 -124
  297. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +62 -43
  298. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +62 -0
  299. data/lib/rubocop/cop/lint/redundant_require_statement.rb +55 -15
  300. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +91 -0
  301. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +74 -37
  302. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +72 -0
  303. data/lib/rubocop/cop/lint/redundant_with_index.rb +27 -29
  304. data/lib/rubocop/cop/lint/redundant_with_object.rb +26 -30
  305. data/lib/rubocop/cop/lint/refinement_import_methods.rb +52 -0
  306. data/lib/rubocop/cop/lint/regexp_as_condition.rb +13 -5
  307. data/lib/rubocop/cop/lint/require_parentheses.rb +8 -8
  308. data/lib/rubocop/cop/lint/require_range_parentheses.rb +57 -0
  309. data/lib/rubocop/cop/lint/require_relative_self_path.rb +50 -0
  310. data/lib/rubocop/cop/lint/rescue_exception.rb +3 -4
  311. data/lib/rubocop/cop/lint/rescue_type.rb +12 -18
  312. data/lib/rubocop/cop/lint/return_in_void_context.rb +7 -22
  313. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +48 -15
  314. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +16 -18
  315. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +13 -5
  316. data/lib/rubocop/cop/lint/script_permission.rb +11 -8
  317. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  318. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +14 -21
  319. data/lib/rubocop/cop/lint/shadowed_argument.rb +10 -16
  320. data/lib/rubocop/cop/lint/shadowed_exception.rb +35 -42
  321. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +56 -7
  322. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  323. data/lib/rubocop/cop/lint/{handle_exceptions.rb → suppressed_exception.rb} +55 -18
  324. data/lib/rubocop/cop/lint/symbol_conversion.rb +179 -0
  325. data/lib/rubocop/cop/lint/syntax.rb +14 -30
  326. data/lib/rubocop/cop/lint/to_enum_arguments.rb +99 -0
  327. data/lib/rubocop/cop/lint/to_json.rb +22 -14
  328. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  329. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  330. data/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  331. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +6 -8
  332. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +90 -0
  333. data/lib/rubocop/cop/lint/unified_integer.rb +7 -8
  334. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  335. data/lib/rubocop/cop/lint/unreachable_code.rb +6 -8
  336. data/lib/rubocop/cop/lint/unreachable_loop.rb +202 -0
  337. data/lib/rubocop/cop/lint/unused_block_argument.rb +19 -12
  338. data/lib/rubocop/cop/lint/unused_method_argument.rb +48 -13
  339. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +6 -3
  340. data/lib/rubocop/cop/lint/uri_regexp.rb +13 -48
  341. data/lib/rubocop/cop/lint/useless_access_modifier.rb +107 -52
  342. data/lib/rubocop/cop/lint/useless_assignment.rb +11 -15
  343. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +8 -13
  344. data/lib/rubocop/cop/lint/useless_method_definition.rb +77 -0
  345. data/lib/rubocop/cop/lint/useless_rescue.rb +89 -0
  346. data/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +127 -0
  347. data/lib/rubocop/cop/lint/useless_setter_call.rb +20 -11
  348. data/lib/rubocop/cop/lint/useless_times.rb +114 -0
  349. data/lib/rubocop/cop/lint/void.rb +36 -32
  350. data/lib/rubocop/cop/message_annotator.rb +5 -4
  351. data/lib/rubocop/cop/metrics/abc_size.rb +35 -3
  352. data/lib/rubocop/cop/metrics/block_length.rb +46 -10
  353. data/lib/rubocop/cop/metrics/block_nesting.rb +7 -12
  354. data/lib/rubocop/cop/metrics/class_length.rb +47 -12
  355. data/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
  356. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +30 -7
  357. data/lib/rubocop/cop/metrics/method_length.rb +42 -7
  358. data/lib/rubocop/cop/metrics/module_length.rb +35 -10
  359. data/lib/rubocop/cop/metrics/parameter_lists.rb +106 -13
  360. data/lib/rubocop/cop/metrics/perceived_complexity.rb +8 -10
  361. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +73 -16
  362. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +182 -0
  363. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  364. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  365. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  366. data/lib/rubocop/cop/migration/department_name.rb +54 -17
  367. data/lib/rubocop/cop/mixin/alignment.rb +19 -12
  368. data/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  369. data/lib/rubocop/cop/mixin/allowed_methods.rb +42 -0
  370. data/lib/rubocop/cop/mixin/allowed_pattern.rb +56 -0
  371. data/lib/rubocop/cop/mixin/annotation_comment.rb +58 -23
  372. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  373. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  374. data/lib/rubocop/cop/mixin/check_line_breakable.rb +56 -19
  375. data/lib/rubocop/cop/mixin/code_length.rb +30 -9
  376. data/lib/rubocop/cop/mixin/comments_help.rb +82 -0
  377. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +28 -14
  378. data/lib/rubocop/cop/mixin/configurable_formatting.rb +4 -11
  379. data/lib/rubocop/cop/mixin/configurable_max.rb +1 -0
  380. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  381. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  382. data/lib/rubocop/cop/mixin/def_node.rb +4 -11
  383. data/lib/rubocop/cop/mixin/documentation_comment.rb +9 -9
  384. data/lib/rubocop/cop/mixin/duplication.rb +1 -1
  385. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +14 -14
  386. data/lib/rubocop/cop/mixin/empty_parameter.rb +2 -1
  387. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +17 -4
  388. data/lib/rubocop/cop/mixin/enforce_superclass.rb +22 -8
  389. data/lib/rubocop/cop/mixin/first_element_line_break.rb +14 -10
  390. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +45 -10
  391. data/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  392. data/lib/rubocop/cop/mixin/gemspec_help.rb +30 -0
  393. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +22 -13
  394. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +226 -0
  395. data/lib/rubocop/cop/mixin/hash_transform_method.rb +192 -0
  396. data/lib/rubocop/cop/mixin/heredoc.rb +5 -0
  397. data/lib/rubocop/cop/mixin/interpolation.rb +1 -3
  398. data/lib/rubocop/cop/mixin/line_length_help.rb +110 -0
  399. data/lib/rubocop/cop/mixin/match_range.rb +2 -5
  400. data/lib/rubocop/cop/mixin/method_complexity.rb +27 -10
  401. data/lib/rubocop/cop/mixin/method_preference.rb +1 -2
  402. data/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
  403. data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +39 -16
  404. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +6 -7
  405. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +18 -46
  406. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +15 -15
  407. data/lib/rubocop/cop/mixin/negative_conditional.rb +6 -4
  408. data/lib/rubocop/cop/mixin/nil_methods.rb +4 -6
  409. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +17 -7
  410. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  411. data/lib/rubocop/cop/mixin/percent_array.rb +85 -12
  412. data/lib/rubocop/cop/mixin/percent_literal.rb +0 -6
  413. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +16 -14
  414. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +6 -9
  415. data/lib/rubocop/cop/mixin/range_help.rb +50 -18
  416. data/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  417. data/lib/rubocop/cop/mixin/require_library.rb +61 -0
  418. data/lib/rubocop/cop/mixin/rescue_node.rb +15 -7
  419. data/lib/rubocop/cop/mixin/safe_assignment.rb +6 -2
  420. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +6 -7
  421. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +7 -7
  422. data/lib/rubocop/cop/mixin/statement_modifier.rb +62 -24
  423. data/lib/rubocop/cop/mixin/string_help.rb +5 -2
  424. data/lib/rubocop/cop/mixin/string_literals_help.rb +3 -5
  425. data/lib/rubocop/cop/mixin/surrounding_space.rb +31 -43
  426. data/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  427. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  428. data/lib/rubocop/cop/mixin/trailing_body.rb +2 -3
  429. data/lib/rubocop/cop/mixin/trailing_comma.rb +20 -29
  430. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +25 -32
  431. data/lib/rubocop/cop/mixin/unused_argument.rb +5 -9
  432. data/lib/rubocop/cop/mixin/visibility_help.rb +72 -0
  433. data/lib/rubocop/cop/naming/accessor_method_name.rb +22 -4
  434. data/lib/rubocop/cop/naming/ascii_identifiers.rb +30 -12
  435. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +18 -8
  436. data/lib/rubocop/cop/naming/block_forwarding.rb +125 -0
  437. data/lib/rubocop/cop/naming/{uncommunicative_block_param_name.rb → block_parameter_name.rb} +6 -6
  438. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +16 -4
  439. data/lib/rubocop/cop/naming/constant_name.rb +9 -6
  440. data/lib/rubocop/cop/naming/file_name.rb +74 -39
  441. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +13 -7
  442. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +9 -9
  443. data/lib/rubocop/cop/naming/inclusive_language.rb +289 -0
  444. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +137 -28
  445. data/lib/rubocop/cop/naming/method_name.rb +37 -9
  446. data/lib/rubocop/cop/naming/{uncommunicative_method_param_name.rb → method_parameter_name.rb} +5 -5
  447. data/lib/rubocop/cop/naming/predicate_name.rb +45 -19
  448. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +68 -17
  449. data/lib/rubocop/cop/naming/variable_name.rb +13 -2
  450. data/lib/rubocop/cop/naming/variable_number.rb +107 -12
  451. data/lib/rubocop/cop/offense.rb +46 -12
  452. data/lib/rubocop/cop/registry.rb +146 -42
  453. data/lib/rubocop/cop/security/compound_hash.rb +106 -0
  454. data/lib/rubocop/cop/security/eval.rb +5 -3
  455. data/lib/rubocop/cop/security/io_methods.rb +49 -0
  456. data/lib/rubocop/cop/security/json_load.rb +17 -16
  457. data/lib/rubocop/cop/security/marshal_load.rb +5 -5
  458. data/lib/rubocop/cop/security/open.rb +29 -11
  459. data/lib/rubocop/cop/security/yaml_load.rb +22 -10
  460. data/lib/rubocop/cop/severity.rb +4 -14
  461. data/lib/rubocop/cop/style/access_modifier_declarations.rb +126 -13
  462. data/lib/rubocop/cop/style/accessor_grouping.rb +176 -0
  463. data/lib/rubocop/cop/style/alias.rb +56 -47
  464. data/lib/rubocop/cop/style/and_or.rb +42 -30
  465. data/lib/rubocop/cop/style/arguments_forwarding.rb +155 -0
  466. data/lib/rubocop/cop/style/array_coercion.rb +87 -0
  467. data/lib/rubocop/cop/style/array_intersect.rb +111 -0
  468. data/lib/rubocop/cop/style/array_join.rb +9 -9
  469. data/lib/rubocop/cop/style/ascii_comments.rb +8 -12
  470. data/lib/rubocop/cop/style/attr.rb +21 -13
  471. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +10 -13
  472. data/lib/rubocop/cop/style/bare_percent_literals.rb +13 -15
  473. data/lib/rubocop/cop/style/begin_block.rb +2 -2
  474. data/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  475. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  476. data/lib/rubocop/cop/style/block_comments.rb +16 -20
  477. data/lib/rubocop/cop/style/block_delimiters.rb +169 -29
  478. data/lib/rubocop/cop/style/case_equality.rb +84 -6
  479. data/lib/rubocop/cop/style/case_like_if.rb +280 -0
  480. data/lib/rubocop/cop/style/character_literal.rb +20 -16
  481. data/lib/rubocop/cop/style/class_and_module_children.rb +69 -34
  482. data/lib/rubocop/cop/style/class_check.rb +7 -12
  483. data/lib/rubocop/cop/style/class_equality_comparison.rb +149 -0
  484. data/lib/rubocop/cop/style/class_methods.rb +9 -15
  485. data/lib/rubocop/cop/style/class_methods_definitions.rb +158 -0
  486. data/lib/rubocop/cop/style/class_vars.rb +24 -8
  487. data/lib/rubocop/cop/style/collection_compact.rb +120 -0
  488. data/lib/rubocop/cop/style/collection_methods.rb +34 -21
  489. data/lib/rubocop/cop/style/colon_method_call.rb +8 -10
  490. data/lib/rubocop/cop/style/colon_method_definition.rb +7 -7
  491. data/lib/rubocop/cop/style/combinable_loops.rb +95 -0
  492. data/lib/rubocop/cop/style/command_literal.rb +23 -29
  493. data/lib/rubocop/cop/style/comment_annotation.rb +70 -37
  494. data/lib/rubocop/cop/style/commented_keyword.rb +43 -24
  495. data/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
  496. data/lib/rubocop/cop/style/concat_array_literals.rb +94 -0
  497. data/lib/rubocop/cop/style/conditional_assignment.rb +102 -109
  498. data/lib/rubocop/cop/style/constant_visibility.rb +32 -3
  499. data/lib/rubocop/cop/style/copyright.rb +22 -25
  500. data/lib/rubocop/cop/style/data_inheritance.rb +75 -0
  501. data/lib/rubocop/cop/style/date_time.rb +22 -6
  502. data/lib/rubocop/cop/style/def_with_parentheses.rb +22 -20
  503. data/lib/rubocop/cop/style/dir.rb +15 -13
  504. data/lib/rubocop/cop/style/dir_empty.rb +60 -0
  505. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  506. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  507. data/lib/rubocop/cop/style/documentation.rb +123 -22
  508. data/lib/rubocop/cop/style/documentation_method.rb +12 -5
  509. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +7 -16
  510. data/lib/rubocop/cop/style/double_negation.rb +134 -10
  511. data/lib/rubocop/cop/style/each_for_simple_loop.rb +48 -16
  512. data/lib/rubocop/cop/style/each_with_object.rb +54 -25
  513. data/lib/rubocop/cop/style/empty_block_parameter.rb +11 -12
  514. data/lib/rubocop/cop/style/empty_case_condition.rb +32 -27
  515. data/lib/rubocop/cop/style/empty_else.rb +54 -25
  516. data/lib/rubocop/cop/style/empty_heredoc.rb +73 -0
  517. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +11 -12
  518. data/lib/rubocop/cop/style/empty_literal.rb +48 -33
  519. data/lib/rubocop/cop/style/empty_method.rb +29 -25
  520. data/lib/rubocop/cop/style/encoding.rb +30 -23
  521. data/lib/rubocop/cop/style/end_block.rb +8 -5
  522. data/lib/rubocop/cop/style/endless_method.rb +101 -0
  523. data/lib/rubocop/cop/style/env_home.rb +56 -0
  524. data/lib/rubocop/cop/style/eval_with_location.rb +145 -56
  525. data/lib/rubocop/cop/style/even_odd.rb +11 -13
  526. data/lib/rubocop/cop/style/expand_path_arguments.rb +28 -26
  527. data/lib/rubocop/cop/style/explicit_block_argument.rb +153 -0
  528. data/lib/rubocop/cop/style/exponential_notation.rb +116 -0
  529. data/lib/rubocop/cop/style/fetch_env_var.rb +132 -0
  530. data/lib/rubocop/cop/style/file_empty.rb +71 -0
  531. data/lib/rubocop/cop/style/file_read.rb +112 -0
  532. data/lib/rubocop/cop/style/file_write.rb +136 -0
  533. data/lib/rubocop/cop/style/float_division.rb +69 -12
  534. data/lib/rubocop/cop/style/for.rb +13 -13
  535. data/lib/rubocop/cop/style/format_string.rb +31 -25
  536. data/lib/rubocop/cop/style/format_string_token.rb +138 -31
  537. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +100 -41
  538. data/lib/rubocop/cop/style/global_std_stream.rb +70 -0
  539. data/lib/rubocop/cop/style/global_vars.rb +3 -3
  540. data/lib/rubocop/cop/style/guard_clause.rb +186 -32
  541. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +100 -0
  542. data/lib/rubocop/cop/style/hash_conversion.rb +134 -0
  543. data/lib/rubocop/cop/style/hash_each_methods.rb +144 -0
  544. data/lib/rubocop/cop/style/hash_except.rb +177 -0
  545. data/lib/rubocop/cop/style/hash_like_case.rb +71 -0
  546. data/lib/rubocop/cop/style/hash_syntax.rb +109 -44
  547. data/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  548. data/lib/rubocop/cop/style/hash_transform_values.rb +93 -0
  549. data/lib/rubocop/cop/style/identical_conditional_branches.rb +106 -11
  550. data/lib/rubocop/cop/style/if_inside_else.rb +65 -2
  551. data/lib/rubocop/cop/style/if_unless_modifier.rb +210 -52
  552. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +11 -3
  553. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +163 -0
  554. data/lib/rubocop/cop/style/if_with_semicolon.rb +51 -3
  555. data/lib/rubocop/cop/style/implicit_runtime_error.rb +6 -4
  556. data/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
  557. data/lib/rubocop/cop/style/infinite_loop.rb +30 -31
  558. data/lib/rubocop/cop/style/inline_comment.rb +5 -5
  559. data/lib/rubocop/cop/style/inverse_methods.rb +60 -57
  560. data/lib/rubocop/cop/style/invertible_unless_condition.rb +114 -0
  561. data/lib/rubocop/cop/style/ip_addresses.rb +8 -9
  562. data/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
  563. data/lib/rubocop/cop/style/lambda.rb +12 -18
  564. data/lib/rubocop/cop/style/lambda_call.rb +20 -45
  565. data/lib/rubocop/cop/style/line_end_concatenation.rb +40 -28
  566. data/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
  567. data/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +136 -0
  568. data/lib/rubocop/cop/style/map_to_hash.rb +71 -0
  569. data/lib/rubocop/cop/style/map_to_set.rb +64 -0
  570. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +226 -0
  571. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +48 -0
  572. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +87 -227
  573. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +41 -15
  574. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +17 -7
  575. data/lib/rubocop/cop/style/method_def_parentheses.rb +43 -29
  576. data/lib/rubocop/cop/style/min_max.rb +14 -18
  577. data/lib/rubocop/cop/style/min_max_comparison.rb +83 -0
  578. data/lib/rubocop/cop/style/missing_else.rb +54 -47
  579. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +12 -6
  580. data/lib/rubocop/cop/style/mixin_grouping.rb +30 -43
  581. data/lib/rubocop/cop/style/mixin_usage.rb +13 -31
  582. data/lib/rubocop/cop/style/module_function.rb +99 -33
  583. data/lib/rubocop/cop/style/multiline_block_chain.rb +17 -7
  584. data/lib/rubocop/cop/style/multiline_if_modifier.rb +6 -17
  585. data/lib/rubocop/cop/style/multiline_if_then.rb +5 -11
  586. data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +60 -0
  587. data/lib/rubocop/cop/style/multiline_memoization.rb +17 -15
  588. data/lib/rubocop/cop/style/multiline_method_signature.rb +38 -5
  589. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +74 -12
  590. data/lib/rubocop/cop/style/multiline_when_then.rb +26 -17
  591. data/lib/rubocop/cop/style/multiple_comparison.rb +78 -13
  592. data/lib/rubocop/cop/style/mutable_constant.rb +117 -44
  593. data/lib/rubocop/cop/style/negated_if.rb +10 -11
  594. data/lib/rubocop/cop/style/negated_if_else_condition.rb +135 -0
  595. data/lib/rubocop/cop/style/negated_unless.rb +10 -11
  596. data/lib/rubocop/cop/style/negated_while.rb +7 -15
  597. data/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
  598. data/lib/rubocop/cop/style/nested_modifier.rb +11 -18
  599. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +35 -23
  600. data/lib/rubocop/cop/style/nested_ternary_operator.rb +43 -5
  601. data/lib/rubocop/cop/style/next.rb +25 -36
  602. data/lib/rubocop/cop/style/nil_comparison.rb +20 -12
  603. data/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  604. data/lib/rubocop/cop/style/non_nil_check.rb +57 -35
  605. data/lib/rubocop/cop/style/not.rb +23 -29
  606. data/lib/rubocop/cop/style/numbered_parameters.rb +46 -0
  607. data/lib/rubocop/cop/style/numbered_parameters_limit.rb +58 -0
  608. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +7 -12
  609. data/lib/rubocop/cop/style/numeric_literals.rb +51 -32
  610. data/lib/rubocop/cop/style/numeric_predicate.rb +72 -32
  611. data/lib/rubocop/cop/style/object_then.rb +74 -0
  612. data/lib/rubocop/cop/style/one_line_conditional.rb +53 -31
  613. data/lib/rubocop/cop/style/open_struct_use.rb +69 -0
  614. data/lib/rubocop/cop/style/operator_method_call.rb +67 -0
  615. data/lib/rubocop/cop/style/option_hash.rb +7 -8
  616. data/lib/rubocop/cop/style/optional_arguments.rb +9 -8
  617. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +64 -0
  618. data/lib/rubocop/cop/style/or_assignment.rb +15 -13
  619. data/lib/rubocop/cop/style/parallel_assignment.rb +31 -26
  620. data/lib/rubocop/cop/style/parentheses_around_condition.rb +20 -9
  621. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +24 -33
  622. data/lib/rubocop/cop/style/percent_q_literals.rb +12 -15
  623. data/lib/rubocop/cop/style/perl_backrefs.rb +106 -17
  624. data/lib/rubocop/cop/style/preferred_hash_methods.rb +21 -22
  625. data/lib/rubocop/cop/style/proc.rb +10 -7
  626. data/lib/rubocop/cop/style/quoted_symbols.rb +124 -0
  627. data/lib/rubocop/cop/style/raise_args.rb +49 -39
  628. data/lib/rubocop/cop/style/random_with_offset.rb +31 -36
  629. data/lib/rubocop/cop/style/redundant_argument.rb +98 -0
  630. data/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
  631. data/lib/rubocop/cop/style/redundant_begin.rb +113 -12
  632. data/lib/rubocop/cop/style/redundant_capital_w.rb +9 -14
  633. data/lib/rubocop/cop/style/redundant_condition.rb +184 -26
  634. data/lib/rubocop/cop/style/redundant_conditional.rb +15 -20
  635. data/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
  636. data/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +45 -0
  637. data/lib/rubocop/cop/style/redundant_each.rb +116 -0
  638. data/lib/rubocop/cop/style/redundant_exception.rb +23 -18
  639. data/lib/rubocop/cop/style/redundant_fetch_block.rb +119 -0
  640. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +61 -0
  641. data/lib/rubocop/cop/style/redundant_freeze.rb +16 -14
  642. data/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +58 -0
  643. data/lib/rubocop/cop/style/redundant_initialize.rb +156 -0
  644. data/lib/rubocop/cop/style/redundant_interpolation.rb +71 -31
  645. data/lib/rubocop/cop/style/redundant_line_continuation.rb +167 -0
  646. data/lib/rubocop/cop/style/redundant_parentheses.rb +72 -61
  647. data/lib/rubocop/cop/style/redundant_percent_q.rb +17 -21
  648. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +119 -0
  649. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +135 -0
  650. data/lib/rubocop/cop/style/redundant_return.rb +39 -38
  651. data/lib/rubocop/cop/style/redundant_self.rb +60 -28
  652. data/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
  653. data/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +83 -0
  654. data/lib/rubocop/cop/style/redundant_sort.rb +86 -43
  655. data/lib/rubocop/cop/style/redundant_sort_by.rb +27 -14
  656. data/lib/rubocop/cop/style/redundant_string_escape.rb +183 -0
  657. data/lib/rubocop/cop/style/regexp_literal.rb +26 -32
  658. data/lib/rubocop/cop/style/require_order.rb +133 -0
  659. data/lib/rubocop/cop/style/rescue_modifier.rb +41 -14
  660. data/lib/rubocop/cop/style/rescue_standard_error.rb +36 -34
  661. data/lib/rubocop/cop/style/return_nil.rb +15 -9
  662. data/lib/rubocop/cop/style/safe_navigation.rb +107 -56
  663. data/lib/rubocop/cop/style/sample.rb +18 -17
  664. data/lib/rubocop/cop/style/select_by_regexp.rb +152 -0
  665. data/lib/rubocop/cop/style/self_assignment.rb +28 -24
  666. data/lib/rubocop/cop/style/semicolon.rb +88 -33
  667. data/lib/rubocop/cop/style/send.rb +6 -8
  668. data/lib/rubocop/cop/style/signal_exception.rb +39 -32
  669. data/lib/rubocop/cop/style/single_argument_dig.rb +65 -0
  670. data/lib/rubocop/cop/style/single_line_block_params.rb +39 -15
  671. data/lib/rubocop/cop/style/single_line_methods.rb +82 -20
  672. data/lib/rubocop/cop/style/slicing_with_range.rb +51 -0
  673. data/lib/rubocop/cop/style/sole_nested_conditional.rb +248 -0
  674. data/lib/rubocop/cop/style/special_global_vars.rb +107 -57
  675. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +18 -25
  676. data/lib/rubocop/cop/style/static_class.rb +128 -0
  677. data/lib/rubocop/cop/style/stderr_puts.rb +10 -14
  678. data/lib/rubocop/cop/style/string_chars.rb +41 -0
  679. data/lib/rubocop/cop/style/string_concatenation.rb +178 -0
  680. data/lib/rubocop/cop/style/string_hash_keys.rb +16 -8
  681. data/lib/rubocop/cop/style/string_literals.rb +20 -20
  682. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +6 -4
  683. data/lib/rubocop/cop/style/string_methods.rb +8 -18
  684. data/lib/rubocop/cop/style/strip.rb +11 -15
  685. data/lib/rubocop/cop/style/struct_inheritance.rb +38 -5
  686. data/lib/rubocop/cop/style/swap_values.rb +112 -0
  687. data/lib/rubocop/cop/style/symbol_array.rb +22 -28
  688. data/lib/rubocop/cop/style/symbol_literal.rb +6 -10
  689. data/lib/rubocop/cop/style/symbol_proc.rb +135 -35
  690. data/lib/rubocop/cop/style/ternary_parentheses.rb +47 -51
  691. data/lib/rubocop/cop/style/top_level_method_definition.rb +85 -0
  692. data/lib/rubocop/cop/style/trailing_body_on_class.rb +5 -7
  693. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +11 -10
  694. data/lib/rubocop/cop/style/trailing_body_on_module.rb +4 -7
  695. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +42 -32
  696. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +44 -6
  697. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
  698. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +47 -6
  699. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +10 -39
  700. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +24 -33
  701. data/lib/rubocop/cop/style/trivial_accessors.rb +112 -49
  702. data/lib/rubocop/cop/style/unless_else.rb +10 -10
  703. data/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
  704. data/lib/rubocop/cop/style/unpack_first.rb +11 -14
  705. data/lib/rubocop/cop/style/variable_interpolation.rb +9 -12
  706. data/lib/rubocop/cop/style/when_then.rb +7 -7
  707. data/lib/rubocop/cop/style/while_until_do.rb +6 -16
  708. data/lib/rubocop/cop/style/while_until_modifier.rb +17 -25
  709. data/lib/rubocop/cop/style/word_array.rb +79 -26
  710. data/lib/rubocop/cop/style/yoda_condition.rb +63 -25
  711. data/lib/rubocop/cop/style/yoda_expression.rb +90 -0
  712. data/lib/rubocop/cop/style/zero_length_predicate.rb +64 -35
  713. data/lib/rubocop/cop/team.rb +156 -81
  714. data/lib/rubocop/cop/util.rb +106 -30
  715. data/lib/rubocop/cop/utils/format_string.rb +22 -9
  716. data/lib/rubocop/cop/variable_force/assignment.rb +3 -3
  717. data/lib/rubocop/cop/variable_force/branch.rb +19 -10
  718. data/lib/rubocop/cop/variable_force/reference.rb +1 -3
  719. data/lib/rubocop/cop/variable_force/scope.rb +9 -12
  720. data/lib/rubocop/cop/variable_force/variable.rb +14 -15
  721. data/lib/rubocop/cop/variable_force/variable_table.rb +5 -3
  722. data/lib/rubocop/cop/variable_force.rb +29 -57
  723. data/lib/rubocop/cops_documentation_generator.rb +329 -0
  724. data/lib/rubocop/core_ext/string.rb +2 -2
  725. data/lib/rubocop/directive_comment.rb +144 -0
  726. data/lib/rubocop/error.rb +1 -0
  727. data/lib/rubocop/ext/comment.rb +18 -0
  728. data/lib/rubocop/ext/processed_source.rb +20 -0
  729. data/lib/rubocop/ext/range.rb +15 -0
  730. data/lib/rubocop/ext/regexp_node.rb +87 -0
  731. data/lib/rubocop/ext/regexp_parser.rb +92 -0
  732. data/lib/rubocop/feature_loader.rb +94 -0
  733. data/lib/rubocop/file_finder.rb +12 -13
  734. data/lib/rubocop/file_patterns.rb +43 -0
  735. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +2 -1
  736. data/lib/rubocop/formatter/base_formatter.rb +0 -4
  737. data/lib/rubocop/formatter/clang_style_formatter.rb +5 -5
  738. data/lib/rubocop/formatter/disabled_config_formatter.rb +82 -39
  739. data/lib/rubocop/formatter/emacs_style_formatter.rb +2 -0
  740. data/lib/rubocop/formatter/formatter_set.rb +24 -22
  741. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +57 -0
  742. data/lib/rubocop/formatter/html_formatter.rb +17 -26
  743. data/lib/rubocop/formatter/json_formatter.rb +11 -11
  744. data/lib/rubocop/formatter/junit_formatter.rb +96 -0
  745. data/lib/rubocop/formatter/markdown_formatter.rb +78 -0
  746. data/lib/rubocop/formatter/offense_count_formatter.rb +17 -8
  747. data/lib/rubocop/formatter/pacman_formatter.rb +1 -1
  748. data/lib/rubocop/formatter/progress_formatter.rb +3 -4
  749. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  750. data/lib/rubocop/formatter/simple_text_formatter.rb +42 -8
  751. data/lib/rubocop/formatter/tap_formatter.rb +7 -5
  752. data/lib/rubocop/formatter/worst_offenders_formatter.rb +8 -6
  753. data/lib/rubocop/formatter.rb +34 -0
  754. data/lib/rubocop/lockfile.rb +40 -0
  755. data/lib/rubocop/magic_comment.rb +101 -17
  756. data/lib/rubocop/name_similarity.rb +18 -10
  757. data/lib/rubocop/options.rb +360 -189
  758. data/lib/rubocop/path_util.rb +68 -42
  759. data/lib/rubocop/platform.rb +1 -1
  760. data/lib/rubocop/rake_task.rb +43 -16
  761. data/lib/rubocop/remote_config.rb +17 -15
  762. data/lib/rubocop/result_cache.rb +91 -45
  763. data/lib/rubocop/rspec/cop_helper.rb +36 -37
  764. data/lib/rubocop/rspec/expect_offense.rb +137 -42
  765. data/lib/rubocop/rspec/parallel_formatter.rb +90 -0
  766. data/lib/rubocop/rspec/shared_contexts.rb +122 -34
  767. data/lib/rubocop/rspec/support.rb +17 -1
  768. data/lib/rubocop/runner.rb +223 -90
  769. data/lib/rubocop/server/cache.rb +155 -0
  770. data/lib/rubocop/server/cli.rb +147 -0
  771. data/lib/rubocop/server/client_command/base.rb +44 -0
  772. data/lib/rubocop/server/client_command/exec.rb +64 -0
  773. data/lib/rubocop/server/client_command/restart.rb +25 -0
  774. data/lib/rubocop/server/client_command/start.rb +48 -0
  775. data/lib/rubocop/server/client_command/status.rb +28 -0
  776. data/lib/rubocop/server/client_command/stop.rb +31 -0
  777. data/lib/rubocop/server/client_command.rb +26 -0
  778. data/lib/rubocop/server/core.rb +111 -0
  779. data/lib/rubocop/server/errors.rb +23 -0
  780. data/lib/rubocop/server/helper.rb +34 -0
  781. data/lib/rubocop/server/server_command/base.rb +50 -0
  782. data/lib/rubocop/server/server_command/exec.rb +34 -0
  783. data/lib/rubocop/server/server_command/stop.rb +24 -0
  784. data/lib/rubocop/server/server_command.rb +21 -0
  785. data/lib/rubocop/server/socket_reader.rb +69 -0
  786. data/lib/rubocop/server.rb +53 -0
  787. data/lib/rubocop/string_interpreter.rb +7 -4
  788. data/lib/rubocop/target_finder.rb +58 -48
  789. data/lib/rubocop/target_ruby.rb +271 -0
  790. data/lib/rubocop/util.rb +16 -0
  791. data/lib/rubocop/version.rb +84 -7
  792. data/lib/rubocop/yaml_duplication_checker.rb +2 -1
  793. data/lib/rubocop.rb +261 -118
  794. metadata +362 -117
  795. data/bin/console +0 -10
  796. data/bin/setup +0 -7
  797. data/lib/rubocop/ast/builder.rb +0 -82
  798. data/lib/rubocop/ast/node/alias_node.rb +0 -24
  799. data/lib/rubocop/ast/node/and_node.rb +0 -29
  800. data/lib/rubocop/ast/node/args_node.rb +0 -29
  801. data/lib/rubocop/ast/node/array_node.rb +0 -57
  802. data/lib/rubocop/ast/node/block_node.rb +0 -115
  803. data/lib/rubocop/ast/node/break_node.rb +0 -17
  804. data/lib/rubocop/ast/node/case_node.rb +0 -56
  805. data/lib/rubocop/ast/node/class_node.rb +0 -31
  806. data/lib/rubocop/ast/node/def_node.rb +0 -71
  807. data/lib/rubocop/ast/node/defined_node.rb +0 -17
  808. data/lib/rubocop/ast/node/ensure_node.rb +0 -17
  809. data/lib/rubocop/ast/node/float_node.rb +0 -12
  810. data/lib/rubocop/ast/node/for_node.rb +0 -53
  811. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  812. data/lib/rubocop/ast/node/if_node.rb +0 -175
  813. data/lib/rubocop/ast/node/int_node.rb +0 -12
  814. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  815. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  816. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -43
  817. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  818. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  819. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  820. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -261
  821. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -114
  822. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  823. data/lib/rubocop/ast/node/mixin/numeric_node.rb +0 -21
  824. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  825. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  826. data/lib/rubocop/ast/node/module_node.rb +0 -24
  827. data/lib/rubocop/ast/node/or_node.rb +0 -29
  828. data/lib/rubocop/ast/node/pair_node.rb +0 -63
  829. data/lib/rubocop/ast/node/range_node.rb +0 -18
  830. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  831. data/lib/rubocop/ast/node/resbody_node.rb +0 -24
  832. data/lib/rubocop/ast/node/retry_node.rb +0 -17
  833. data/lib/rubocop/ast/node/return_node.rb +0 -24
  834. data/lib/rubocop/ast/node/self_class_node.rb +0 -24
  835. data/lib/rubocop/ast/node/send_node.rb +0 -13
  836. data/lib/rubocop/ast/node/str_node.rb +0 -16
  837. data/lib/rubocop/ast/node/super_node.rb +0 -21
  838. data/lib/rubocop/ast/node/symbol_node.rb +0 -12
  839. data/lib/rubocop/ast/node/until_node.rb +0 -35
  840. data/lib/rubocop/ast/node/when_node.rb +0 -53
  841. data/lib/rubocop/ast/node/while_node.rb +0 -35
  842. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  843. data/lib/rubocop/ast/node.rb +0 -644
  844. data/lib/rubocop/ast/sexp.rb +0 -16
  845. data/lib/rubocop/ast/traversal.rb +0 -183
  846. data/lib/rubocop/cop/layout/align_arguments.rb +0 -93
  847. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  848. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -256
  849. data/lib/rubocop/cop/layout/tab.rb +0 -75
  850. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  851. data/lib/rubocop/cop/lint/multiple_compare.rb +0 -48
  852. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +0 -59
  853. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  854. data/lib/rubocop/cop/metrics/line_length.rb +0 -318
  855. data/lib/rubocop/cop/mixin/classish_length.rb +0 -37
  856. data/lib/rubocop/cop/mixin/ignored_methods.rb +0 -19
  857. data/lib/rubocop/cop/mixin/ignored_pattern.rb +0 -29
  858. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  859. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -24
  860. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -35
  861. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -209
  862. data/lib/rubocop/cop/style/method_missing_super.rb +0 -34
  863. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  864. data/lib/rubocop/node_pattern.rb +0 -801
  865. data/lib/rubocop/processed_source.rb +0 -216
  866. data/lib/rubocop/string_util.rb +0 -14
  867. data/lib/rubocop/token.rb +0 -114
@@ -3,44 +3,62 @@
3
3
  module RuboCop
4
4
  # Common methods and behaviors for dealing with paths.
5
5
  module PathUtil
6
- module_function
6
+ class << self
7
+ attr_accessor :relative_paths_cache
8
+ end
9
+ self.relative_paths_cache = Hash.new { |hash, key| hash[key] = {} }
7
10
 
8
- def relative_path(path, base_dir = PathUtil.pwd)
9
- # Optimization for the common case where path begins with the base
10
- # dir. Just cut off the first part.
11
- if path.start_with?(base_dir)
12
- base_dir_length = base_dir.length
13
- result_length = path.length - base_dir_length - 1
14
- return path[base_dir_length + 1, result_length]
15
- end
11
+ module_function
16
12
 
17
- path_name = Pathname.new(File.expand_path(path))
18
- begin
19
- path_name.relative_path_from(Pathname.new(base_dir)).to_s
20
- rescue ArgumentError
21
- path
22
- end
13
+ def relative_path(path, base_dir = Dir.pwd)
14
+ PathUtil.relative_paths_cache[base_dir][path] ||=
15
+ # Optimization for the common case where path begins with the base
16
+ # dir. Just cut off the first part.
17
+ if path.start_with?(base_dir)
18
+ base_dir_length = base_dir.length
19
+ result_length = path.length - base_dir_length - 1
20
+ path[base_dir_length + 1, result_length]
21
+ else
22
+ path_name = Pathname.new(File.expand_path(path))
23
+ begin
24
+ path_name.relative_path_from(Pathname.new(base_dir)).to_s
25
+ rescue ArgumentError
26
+ path
27
+ end
28
+ end
23
29
  end
24
30
 
31
+ SMART_PATH_CACHE = {} # rubocop:disable Style/MutableConstant
32
+ private_constant :SMART_PATH_CACHE
33
+
25
34
  def smart_path(path)
26
- # Ideally, we calculate this relative to the project root.
27
- base_dir = PathUtil.pwd
35
+ SMART_PATH_CACHE[path] ||= begin
36
+ # Ideally, we calculate this relative to the project root.
37
+ base_dir = Dir.pwd
28
38
 
29
- if path.start_with? base_dir
30
- relative_path(path, base_dir)
31
- else
32
- path
39
+ if path.start_with? base_dir
40
+ relative_path(path, base_dir)
41
+ else
42
+ path
43
+ end
33
44
  end
34
45
  end
35
46
 
47
+ # rubocop:disable Metrics/MethodLength, Metrics/CyclomaticComplexity
36
48
  def match_path?(pattern, path)
37
49
  case pattern
38
50
  when String
39
- File.fnmatch?(pattern, path, File::FNM_PATHNAME | File::FNM_EXTGLOB) ||
40
- hidden_file_in_not_hidden_dir?(pattern, path)
51
+ matches =
52
+ if pattern == path
53
+ true
54
+ elsif glob?(pattern)
55
+ File.fnmatch?(pattern, path, File::FNM_PATHNAME | File::FNM_EXTGLOB)
56
+ end
57
+
58
+ matches || hidden_file_in_not_hidden_dir?(pattern, path)
41
59
  when Regexp
42
60
  begin
43
- path =~ pattern
61
+ pattern.match?(path)
44
62
  rescue ArgumentError => e
45
63
  return false if e.message.start_with?('invalid byte sequence')
46
64
 
@@ -48,38 +66,46 @@ module RuboCop
48
66
  end
49
67
  end
50
68
  end
69
+ # rubocop:enable Metrics/MethodLength, Metrics/CyclomaticComplexity
51
70
 
52
71
  # Returns true for an absolute Unix or Windows path.
53
72
  def absolute?(path)
54
- path =~ %r{\A([A-Z]:)?/}i
73
+ %r{\A([A-Z]:)?/}i.match?(path)
55
74
  end
56
75
 
57
- def self.pwd
58
- @pwd ||= Dir.pwd
76
+ # Returns true for a glob
77
+ def glob?(path)
78
+ path.match?(/[*{\[?]/)
59
79
  end
60
80
 
61
- def self.reset_pwd
62
- @pwd = nil
81
+ def hidden_file_in_not_hidden_dir?(pattern, path)
82
+ hidden_file?(path) &&
83
+ File.fnmatch?(
84
+ pattern, path,
85
+ File::FNM_PATHNAME | File::FNM_EXTGLOB | File::FNM_DOTMATCH
86
+ ) &&
87
+ !hidden_dir?(path)
63
88
  end
64
89
 
65
- def self.chdir(dir, &block)
66
- reset_pwd
67
- Dir.chdir(dir, &block)
68
- ensure
69
- reset_pwd
90
+ def hidden_file?(path)
91
+ maybe_hidden_file?(path) && File.basename(path).start_with?('.')
70
92
  end
71
93
 
72
- def hidden_file_in_not_hidden_dir?(pattern, path)
73
- File.fnmatch?(
74
- pattern, path,
75
- File::FNM_PATHNAME | File::FNM_EXTGLOB | File::FNM_DOTMATCH
76
- ) && File.basename(path).start_with?('.') && !hidden_dir?(path)
94
+ HIDDEN_FILE_PATTERN = "#{File::SEPARATOR}."
95
+
96
+ # Loose check to reduce memory allocations
97
+ def maybe_hidden_file?(path)
98
+ return false unless path.include?(HIDDEN_FILE_PATTERN)
99
+
100
+ separator_index = path.rindex(File::SEPARATOR)
101
+ return false unless separator_index
102
+
103
+ dot_index = path.index('.', separator_index + 1)
104
+ dot_index == separator_index + 1
77
105
  end
78
106
 
79
107
  def hidden_dir?(path)
80
- File.dirname(path).split(File::SEPARATOR).any? do |dir|
81
- dir.start_with?('.')
82
- end
108
+ File.dirname(path).split(File::SEPARATOR).any? { |dir| dir.start_with?('.') }
83
109
  end
84
110
  end
85
111
  end
@@ -5,7 +5,7 @@ module RuboCop
5
5
  # on.
6
6
  module Platform
7
7
  def self.windows?
8
- RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/
8
+ /cygwin|mswin|mingw|bccwin|wince|emx/.match?(RbConfig::CONFIG['host_os'])
9
9
  end
10
10
  end
11
11
  end
@@ -8,23 +8,21 @@ module RuboCop
8
8
  #
9
9
  # require 'rubocop/rake_task'
10
10
  # RuboCop::RakeTask.new
11
- class RakeTask < Rake::TaskLib
12
- attr_accessor :name
13
- attr_accessor :verbose
14
- attr_accessor :fail_on_error
15
- attr_accessor :patterns
16
- attr_accessor :formatters
17
- attr_accessor :requires
18
- attr_accessor :options
11
+ #
12
+ # Use global Rake namespace here to avoid namespace issues with custom
13
+ # rubocop-rake tasks
14
+ class RakeTask < ::Rake::TaskLib
15
+ attr_accessor :name, :verbose, :fail_on_error, :patterns, :formatters, :requires, :options
19
16
 
20
17
  def initialize(name = :rubocop, *args, &task_block)
18
+ super()
21
19
  setup_ivars(name)
22
20
 
23
21
  desc 'Run RuboCop' unless ::Rake.application.last_description
24
22
 
25
23
  task(name, *args) do |_, task_args|
26
24
  RakeFileUtils.verbose(verbose) do
27
- yield(*[self, task_args].slice(0, task_block.arity)) if block_given?
25
+ yield(*[self, task_args].slice(0, task_block.arity)) if task_block
28
26
  run_cli(verbose, full_options)
29
27
  end
30
28
  end
@@ -34,8 +32,17 @@ module RuboCop
34
32
 
35
33
  private
36
34
 
35
+ def perform(option)
36
+ options = full_options.unshift(option)
37
+ # `parallel` will automatically be removed from the options internally.
38
+ # This is a nice to have to suppress the warning message
39
+ # about --parallel and --autocorrect not being compatible.
40
+ options.delete('--parallel')
41
+ run_cli(verbose, options)
42
+ end
43
+
37
44
  def run_cli(verbose, options)
38
- # We lazy-load rubocop so that the task doesn't dramatically impact the
45
+ # We lazy-load RuboCop so that the task doesn't dramatically impact the
39
46
  # load time of your Rakefile.
40
47
  require 'rubocop'
41
48
 
@@ -62,15 +69,35 @@ module RuboCop
62
69
  @formatters = []
63
70
  end
64
71
 
65
- def setup_subtasks(name, *args, &task_block)
72
+ def setup_subtasks(name, *args, &task_block) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
66
73
  namespace(name) do
67
- desc 'Auto-correct RuboCop offenses'
74
+ # rubocop:todo Naming/InclusiveLanguage
75
+ task(:auto_correct, *args) do
76
+ require 'rainbow'
77
+ warn Rainbow(
78
+ 'rubocop:auto_correct task is deprecated; ' \
79
+ 'use rubocop:autocorrect task or rubocop:autocorrect_all task instead.'
80
+ ).yellow
81
+ RakeFileUtils.verbose(verbose) do
82
+ yield(*[self, task_args].slice(0, task_block.arity)) if task_block
83
+ perform('--autocorrect')
84
+ end
85
+ end
86
+ # rubocop:enable Naming/InclusiveLanguage
87
+
88
+ desc "Autocorrect RuboCop offenses (only when it's safe)."
89
+ task(:autocorrect, *args) do |_, task_args|
90
+ RakeFileUtils.verbose(verbose) do
91
+ yield(*[self, task_args].slice(0, task_block.arity)) if task_block
92
+ perform('--autocorrect')
93
+ end
94
+ end
68
95
 
69
- task(:auto_correct, *args) do |_, task_args|
96
+ desc 'Autocorrect RuboCop offenses (safe and unsafe).'
97
+ task(:autocorrect_all, *args) do |_, task_args|
70
98
  RakeFileUtils.verbose(verbose) do
71
- yield(*[self, task_args].slice(0, task_block.arity)) if block_given?
72
- options = full_options.unshift('--auto-correct')
73
- run_cli(verbose, options)
99
+ yield(*[self, task_args].slice(0, task_block.arity)) if task_block
100
+ perform('--autocorrect-all')
74
101
  end
75
102
  end
76
103
  end
@@ -5,6 +5,7 @@ require 'time'
5
5
 
6
6
  module RuboCop
7
7
  # Common methods and behaviors for dealing with remote config files.
8
+ # @api private
8
9
  class RemoteConfig
9
10
  attr_reader :uri
10
11
 
@@ -22,9 +23,7 @@ module RuboCop
22
23
  next if response.is_a?(Net::HTTPNotModified)
23
24
  next if response.is_a?(SocketError)
24
25
 
25
- File.open cache_path, 'w' do |io|
26
- io.write response.body
27
- end
26
+ File.write(cache_path, response.body)
28
27
  end
29
28
 
30
29
  cache_path
@@ -32,7 +31,7 @@ module RuboCop
32
31
 
33
32
  def inherit_from_remote(file, path)
34
33
  new_uri = @uri.dup
35
- new_uri.path.gsub!(%r{/[^/]*$}, "/#{file}")
34
+ new_uri.path.gsub!(%r{/[^/]*$}, "/#{file.delete_prefix('./')}")
36
35
  RemoteConfig.new(new_uri.to_s, File.dirname(path))
37
36
  end
38
37
 
@@ -45,20 +44,17 @@ module RuboCop
45
44
  http.use_ssl = uri.instance_of?(URI::HTTPS)
46
45
 
47
46
  generate_request(uri) do |request|
48
- begin
49
- handle_response(http.request(request), limit, &block)
50
- rescue SocketError => e
51
- handle_response(e, limit, &block)
52
- end
47
+ handle_response(http.request(request), limit, &block)
48
+ rescue SocketError => e
49
+ handle_response(e, limit, &block)
53
50
  end
54
51
  end
55
52
 
56
53
  def generate_request(uri)
57
54
  request = Net::HTTP::Get.new(uri.request_uri)
58
55
 
59
- if cache_path_exists?
60
- request['If-Modified-Since'] = File.stat(cache_path).mtime.rfc2822
61
- end
56
+ request.basic_auth(uri.user, uri.password) if uri.user
57
+ request['If-Modified-Since'] = File.stat(cache_path).mtime.rfc2822 if cache_path_exists?
62
58
 
63
59
  yield request
64
60
  end
@@ -73,8 +69,7 @@ module RuboCop
73
69
  begin
74
70
  response.error!
75
71
  rescue StandardError => e
76
- message = "#{e.message} while downloading remote config"\
77
- " file #{uri}"
72
+ message = "#{e.message} while downloading remote config file #{cloned_url}"
78
73
  raise e, message
79
74
  end
80
75
  end
@@ -98,9 +93,16 @@ module RuboCop
98
93
  end
99
94
 
100
95
  def cache_name_from_uri
101
- uri = @uri.clone
96
+ uri = cloned_url
102
97
  uri.query = nil
103
98
  uri.to_s.gsub!(/[^0-9A-Za-z]/, '-')
104
99
  end
100
+
101
+ def cloned_url
102
+ uri = @uri.clone
103
+ uri.user = nil if uri.user
104
+ uri.password = nil if uri.password
105
+ uri
106
+ end
105
107
  end
106
108
  end
@@ -1,15 +1,25 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'digest/sha1'
4
- require 'find'
5
4
  require 'etc'
5
+ require 'find'
6
+ require 'zlib'
7
+ require_relative 'cache_config'
6
8
 
7
9
  module RuboCop
8
- # Provides functionality for caching rubocop runs.
10
+ # Provides functionality for caching RuboCop runs.
11
+ # @api private
9
12
  class ResultCache
10
- NON_CHANGING = %i[color format formatters out debug fail_level auto_correct
13
+ NON_CHANGING = %i[color format formatters out debug fail_level
14
+ fix_layout autocorrect safe_autocorrect autocorrect_all
11
15
  cache fail_fast stdin parallel].freeze
12
16
 
17
+ DL_EXTENSIONS = ::RbConfig::CONFIG
18
+ .values_at('DLEXT', 'DLEXT2')
19
+ .reject { |ext| !ext || ext.empty? }
20
+ .map { |ext| ".#{ext}" }
21
+ .freeze
22
+
13
23
  # Remove old files so that the cache doesn't grow too big. When the
14
24
  # threshold MaxFilesInCache has been exceeded, the oldest 50% of all the
15
25
  # files in the cache are removed. The reason for removing so much is that
@@ -29,20 +39,22 @@ module RuboCop
29
39
  end
30
40
 
31
41
  class << self
42
+ # @api private
43
+ attr_accessor :rubocop_required_features
44
+
45
+ ResultCache.rubocop_required_features = []
46
+
32
47
  private
33
48
 
34
49
  def requires_file_removal?(file_count, config_store)
35
- file_count > 1 &&
36
- file_count > config_store.for('.').for_all_cops['MaxFilesInCache']
50
+ file_count > 1 && file_count > config_store.for_pwd.for_all_cops['MaxFilesInCache']
37
51
  end
38
52
 
39
53
  def remove_oldest_files(files, dirs, cache_root, verbose)
40
54
  # Add 1 to half the number of files, so that we remove the file if
41
55
  # there's only 1 left.
42
- remove_count = 1 + files.length / 2
43
- if verbose
44
- puts "Removing the #{remove_count} oldest files from #{cache_root}"
45
- end
56
+ remove_count = (files.length / 2) + 1
57
+ puts "Removing the #{remove_count} oldest files from #{cache_root}" if verbose
46
58
  sorted = files.sort_by { |path| File.mtime(path) }
47
59
  remove_files(sorted, dirs, remove_count)
48
60
  rescue Errno::ENOENT
@@ -62,29 +74,32 @@ module RuboCop
62
74
  end
63
75
 
64
76
  def self.cache_root(config_store)
65
- root = config_store.for('.').for_all_cops['CacheRootDirectory']
66
- root ||= if ENV.key?('XDG_CACHE_HOME')
67
- # Include user ID in the path to make sure the user has write
68
- # access.
69
- File.join(ENV['XDG_CACHE_HOME'], Process.uid.to_s)
70
- else
71
- File.join(ENV['HOME'], '.cache')
72
- end
73
- File.join(root, 'rubocop_cache')
77
+ CacheConfig.root_dir do
78
+ config_store.for_pwd.for_all_cops['CacheRootDirectory']
79
+ end
74
80
  end
75
81
 
76
82
  def self.allow_symlinks_in_cache_location?(config_store)
77
- config_store.for('.').for_all_cops['AllowSymlinksInCacheRootDirectory']
83
+ config_store.for_pwd.for_all_cops['AllowSymlinksInCacheRootDirectory']
78
84
  end
79
85
 
80
- def initialize(file, options, config_store, cache_root = nil)
86
+ attr :path
87
+
88
+ def initialize(file, team, options, config_store, cache_root = nil)
89
+ cache_root ||= File.join(options[:cache_root], 'rubocop_cache') if options[:cache_root]
81
90
  cache_root ||= ResultCache.cache_root(config_store)
82
91
  @allow_symlinks_in_cache_location =
83
92
  ResultCache.allow_symlinks_in_cache_location?(config_store)
84
- @path = File.join(cache_root, rubocop_checksum,
85
- relevant_options_digest(options),
93
+ @path = File.join(cache_root,
94
+ rubocop_checksum,
95
+ context_checksum(team, options),
86
96
  file_checksum(file, config_store))
87
97
  @cached_data = CachedData.new(file)
98
+ @debug = options[:debug]
99
+ end
100
+
101
+ def debug?
102
+ @debug
88
103
  end
89
104
 
90
105
  def valid?
@@ -92,7 +107,8 @@ module RuboCop
92
107
  end
93
108
 
94
109
  def load
95
- @cached_data.from_json(IO.read(@path, encoding: Encoding::UTF_8))
110
+ puts "Loading cache from #{@path}" if debug?
111
+ @cached_data.from_json(File.read(@path, encoding: Encoding::UTF_8))
96
112
  end
97
113
 
98
114
  def save(offenses)
@@ -101,8 +117,7 @@ module RuboCop
101
117
  begin
102
118
  FileUtils.mkdir_p(dir)
103
119
  rescue Errno::EACCES, Errno::EROFS => e
104
- warn "Couldn't create cache directory. Continuing without cache."\
105
- "\n #{e.message}"
120
+ warn "Couldn't create cache directory. Continuing without cache.\n #{e.message}"
106
121
  return
107
122
  end
108
123
 
@@ -143,9 +158,7 @@ module RuboCop
143
158
  def file_checksum(file, config_store)
144
159
  digester = Digest::SHA1.new
145
160
  mode = File.stat(file).mode
146
- digester.update(
147
- "#{file}#{mode}#{config_store.for(file).signature}"
148
- )
161
+ digester.update("#{file}#{mode}#{config_store.for_file(file).signature}")
149
162
  digester.file(file)
150
163
  digester.hexdigest
151
164
  rescue Errno::ENOENT
@@ -158,34 +171,67 @@ module RuboCop
158
171
  attr_accessor :source_checksum, :inhibit_cleanup
159
172
  end
160
173
 
161
- # The checksum of the rubocop program running the inspection.
174
+ # The checksum of the RuboCop program running the inspection.
162
175
  def rubocop_checksum
163
176
  ResultCache.source_checksum ||=
164
177
  begin
165
- lib_root = File.join(File.dirname(__FILE__), '..')
166
- exe_root = File.join(lib_root, '..', 'exe')
167
-
168
- # These are all the files we have `require`d plus everything in the
169
- # exe directory. A change to any of them could affect the cop output
170
- # so we include them in the cache hash.
171
- source_files = $LOADED_FEATURES + Find.find(exe_root).to_a
172
- sources = source_files
173
- .select { |path| File.file?(path) }
174
- .sort
175
- .map { |path| IO.read(path, encoding: Encoding::UTF_8) }
176
- Digest::SHA1.hexdigest(sources.join)
178
+ digest = Digest::SHA1.new
179
+ rubocop_extra_features
180
+ .select { |path| File.file?(path) }
181
+ .sort!
182
+ .each do |path|
183
+ digest << digest(path)
184
+ end
185
+ digest << RuboCop::Version::STRING << RuboCop::AST::Version::STRING
186
+ digest.hexdigest
177
187
  end
178
188
  end
179
189
 
190
+ def digest(path)
191
+ content = if path.end_with?(*DL_EXTENSIONS)
192
+ # Shared libraries often contain timestamps of when
193
+ # they were compiled and other non-stable data.
194
+ File.basename(path)
195
+ else
196
+ File.binread(path) # mtime not reliable
197
+ end
198
+ Zlib.crc32(content).to_s
199
+ end
200
+
201
+ def rubocop_extra_features
202
+ lib_root = File.join(File.dirname(__FILE__), '..')
203
+ exe_root = File.join(lib_root, '..', 'exe')
204
+
205
+ # These are all the files we have `require`d plus everything in the
206
+ # exe directory. A change to any of them could affect the cop output
207
+ # so we include them in the cache hash.
208
+ source_files = $LOADED_FEATURES + Find.find(exe_root).to_a
209
+ source_files -= ResultCache.rubocop_required_features # Rely on gem versions
210
+
211
+ source_files
212
+ end
213
+
180
214
  # Return a hash of the options given at invocation, minus the ones that have
181
215
  # no effect on which offenses and disabled line ranges are found, and thus
182
216
  # don't affect caching.
183
217
  def relevant_options_digest(options)
184
218
  options = options.reject { |key, _| NON_CHANGING.include?(key) }
185
- options = options.to_s.gsub(/[^a-z]+/i, '_')
186
- # We must avoid making file names too long for some filesystems to handle
187
- # If they are short, we can leave them human-readable
188
- options.length <= 32 ? options : Digest::SHA1.hexdigest(options)
219
+ options.to_s.gsub(/[^a-z]+/i, '_')
220
+ end
221
+
222
+ # The external dependency checksums are cached per RuboCop team so that
223
+ # the checksums don't need to be recomputed for each file.
224
+ def team_checksum(team)
225
+ @checksum_by_team ||= {}.compare_by_identity
226
+ @checksum_by_team[team] ||= team.external_dependency_checksum
227
+ end
228
+
229
+ # We combine team and options into a single "context" checksum to avoid
230
+ # making file names that are too long for some filesystems to handle.
231
+ # This context is for anything that's not (1) the RuboCop executable
232
+ # checksum or (2) the inspected file checksum.
233
+ def context_checksum(team, options)
234
+ Digest::SHA1.hexdigest([team_checksum(team), relevant_options_digest(options)].join)
189
235
  end
190
236
  end
191
237
  end
@@ -6,30 +6,52 @@ require 'tempfile'
6
6
  module CopHelper
7
7
  extend RSpec::SharedContext
8
8
 
9
- let(:ruby_version) { 2.3 }
9
+ let(:ruby_version) { 2.6 }
10
10
  let(:rails_version) { false }
11
11
 
12
- def inspect_source_file(source)
13
- Tempfile.open('tmp') { |f| inspect_source(source, f) }
14
- end
15
-
16
12
  def inspect_source(source, file = nil)
17
13
  RuboCop::Formatter::DisabledConfigFormatter.config_to_allow_offenses = {}
18
14
  RuboCop::Formatter::DisabledConfigFormatter.detected_styles = {}
19
15
  processed_source = parse_source(source, file)
20
- raise 'Error parsing example code' unless processed_source.valid_syntax?
16
+ unless processed_source.valid_syntax?
17
+ raise 'Error parsing example code: ' \
18
+ "#{processed_source.diagnostics.map(&:render).join("\n")}"
19
+ end
21
20
 
22
21
  _investigate(cop, processed_source)
23
22
  end
24
23
 
25
24
  def parse_source(source, file = nil)
26
- if file&.respond_to?(:write)
25
+ if file.respond_to?(:write)
27
26
  file.write(source)
28
27
  file.rewind
29
28
  file = file.path
30
29
  end
31
30
 
32
- RuboCop::ProcessedSource.new(source, ruby_version, file)
31
+ processed_source = RuboCop::ProcessedSource.new(source, ruby_version, file)
32
+ processed_source.config = configuration
33
+ processed_source.registry = registry
34
+ processed_source
35
+ end
36
+
37
+ def configuration
38
+ @configuration ||= if defined?(config)
39
+ config
40
+ else
41
+ RuboCop::Config.new({}, "#{Dir.pwd}/.rubocop.yml")
42
+ end
43
+ end
44
+
45
+ def registry
46
+ @registry ||= begin
47
+ keys = configuration.keys
48
+ cops =
49
+ keys.map { |directive| RuboCop::Cop::Registry.global.find_cops_by_directive(directive) }
50
+ .flatten
51
+ cops << cop_class if defined?(cop_class) && !cops.include?(cop_class)
52
+ cops.compact!
53
+ RuboCop::Cop::Registry.new(cops)
54
+ end
33
55
  end
34
56
 
35
57
  def autocorrect_source_file(source)
@@ -39,41 +61,18 @@ module CopHelper
39
61
  def autocorrect_source(source, file = nil)
40
62
  RuboCop::Formatter::DisabledConfigFormatter.config_to_allow_offenses = {}
41
63
  RuboCop::Formatter::DisabledConfigFormatter.detected_styles = {}
42
- cop.instance_variable_get(:@options)[:auto_correct] = true
64
+ cop.instance_variable_get(:@options)[:autocorrect] = true
43
65
  processed_source = parse_source(source, file)
44
66
  _investigate(cop, processed_source)
45
67
 
46
- corrector =
47
- RuboCop::Cop::Corrector.new(processed_source.buffer, cop.corrections)
48
- corrector.rewrite
49
- end
50
-
51
- def autocorrect_source_with_loop(source, file = nil)
52
- cnt = 0
53
- loop do
54
- cop.instance_variable_set(:@corrections, [])
55
- new_source = autocorrect_source(source, file)
56
- return new_source if new_source == source
57
-
58
- source = new_source
59
- cnt += 1
60
- if cnt > RuboCop::Runner::MAX_ITERATIONS
61
- raise RuboCop::Runner::InfiniteCorrectionLoop.new(file, [])
62
- end
63
- end
68
+ @last_corrector.rewrite
64
69
  end
65
70
 
66
71
  def _investigate(cop, processed_source)
67
- forces = RuboCop::Cop::Force.all.each_with_object([]) do |klass, instances|
68
- next unless cop.join_force?(klass)
69
-
70
- instances << klass.new([cop])
71
- end
72
-
73
- commissioner =
74
- RuboCop::Cop::Commissioner.new([cop], forces, raise_error: true)
75
- commissioner.investigate(processed_source)
76
- commissioner
72
+ team = RuboCop::Cop::Team.new([cop], configuration, raise_error: true)
73
+ report = team.investigate(processed_source)
74
+ @last_corrector = report.correctors.first || RuboCop::Cop::Corrector.new(processed_source)
75
+ report.offenses.reject(&:disabled?)
77
76
  end
78
77
  end
79
78