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
@@ -5,6 +5,8 @@ module RuboCop
5
5
  # This formatter displays a YAML configuration file where all cops that
6
6
  # detected any offenses are configured to not detect the offense.
7
7
  class DisabledConfigFormatter < BaseFormatter
8
+ include PathUtil
9
+
8
10
  HEADING = <<~COMMENTS
9
11
  # This configuration was generated by
10
12
  # `%<command>s`
@@ -32,7 +34,6 @@ module RuboCop
32
34
  @exclude_limit_option = @options[:exclude_limit]
33
35
  @exclude_limit = Integer(@exclude_limit_option ||
34
36
  RuboCop::Options::DEFAULT_MAXIMUM_EXCLUSION_ITEMS)
35
- @show_offense_counts = !@options[:no_offense_counts]
36
37
  end
37
38
 
38
39
  def file_finished(file, offenses)
@@ -56,29 +57,39 @@ module RuboCop
56
57
 
57
58
  private
58
59
 
60
+ def show_timestamp?
61
+ @options.fetch(:auto_gen_timestamp, true)
62
+ end
63
+
64
+ def show_offense_counts?
65
+ @options.fetch(:offense_counts, true)
66
+ end
67
+
68
+ def auto_gen_enforced_style?
69
+ @options.fetch(:auto_gen_enforced_style, true)
70
+ end
71
+
59
72
  def command
60
73
  command = 'rubocop --auto-gen-config'
61
74
 
62
- if @options[:auto_gen_only_exclude]
63
- command += ' --auto-gen-only-exclude'
64
- end
75
+ command += ' --auto-gen-only-exclude' if @options[:auto_gen_only_exclude]
65
76
 
66
- if @exclude_limit_option
67
- command +=
68
- format(' --exclude-limit %<limit>d',
69
- limit: Integer(@exclude_limit_option))
77
+ if no_exclude_limit?
78
+ command += ' --no-exclude-limit'
79
+ elsif @exclude_limit_option
80
+ command += format(' --exclude-limit %<limit>d', limit: Integer(@exclude_limit_option))
70
81
  end
71
- command += ' --no-offense-counts' if @options[:no_offense_counts]
82
+ command += ' --no-offense-counts' unless show_offense_counts?
72
83
 
73
- if @options[:no_auto_gen_timestamp]
74
- command += ' --no-auto-gen-timestamp'
75
- end
84
+ command += ' --no-auto-gen-timestamp' unless show_timestamp?
85
+
86
+ command += ' --no-auto-gen-enforced-style' unless auto_gen_enforced_style?
76
87
 
77
88
  command
78
89
  end
79
90
 
80
91
  def timestamp
81
- @options[:no_auto_gen_timestamp] ? '' : "on #{Time.now} "
92
+ show_timestamp? ? "on #{Time.now.utc} " : ''
82
93
  end
83
94
 
84
95
  def output_offenses
@@ -106,8 +117,7 @@ module RuboCop
106
117
 
107
118
  # In case auto_gen_only_exclude is set, only modify the maximum if the
108
119
  # files are not excluded one by one.
109
- if !@options[:auto_gen_only_exclude] ||
110
- @files_with_offenses[cop_name].size > @exclude_limit
120
+ if !@options[:auto_gen_only_exclude] || @files_with_offenses[cop_name].size > @exclude_limit
111
121
  cfg.merge!(cfg[:exclude_limit])
112
122
  end
113
123
 
@@ -116,16 +126,17 @@ module RuboCop
116
126
  end
117
127
 
118
128
  def output_cop_comments(output_buffer, cfg, cop_name, offense_count)
119
- if @show_offense_counts
120
- output_buffer.puts "# Offense count: #{offense_count}"
121
- end
129
+ output_buffer.puts "# Offense count: #{offense_count}" if show_offense_counts?
130
+
131
+ cop_class = Cop::Registry.global.find_by_cop_name(cop_name)
132
+ default_cfg = default_config(cop_name)
122
133
 
123
- cop_class = Cop::Cop.registry.find_by_cop_name(cop_name)
124
- if cop_class&.new&.support_autocorrect?
125
- output_buffer.puts '# Cop supports --auto-correct.'
134
+ if supports_safe_autocorrect?(cop_class, default_cfg)
135
+ output_buffer.puts '# This cop supports safe autocorrection (--autocorrect).'
136
+ elsif supports_unsafe_autocorrect?(cop_class, default_cfg)
137
+ output_buffer.puts '# This cop supports unsafe autocorrection (--autocorrect-all).'
126
138
  end
127
139
 
128
- default_cfg = default_config(cop_name)
129
140
  return unless default_cfg
130
141
 
131
142
  params = cop_config_params(default_cfg, cfg)
@@ -134,6 +145,14 @@ module RuboCop
134
145
  output_cop_param_comments(output_buffer, params, default_cfg)
135
146
  end
136
147
 
148
+ def supports_safe_autocorrect?(cop_class, default_cfg)
149
+ cop_class&.support_autocorrect? && (default_cfg.nil? || safe_autocorrect?(default_cfg))
150
+ end
151
+
152
+ def supports_unsafe_autocorrect?(cop_class, default_cfg)
153
+ cop_class&.support_autocorrect? && !safe_autocorrect?(default_cfg)
154
+ end
155
+
137
156
  def cop_config_params(default_cfg, cfg)
138
157
  default_cfg.keys -
139
158
  %w[Description StyleGuide Reference Enabled Exclude Safe
@@ -143,16 +162,14 @@ module RuboCop
143
162
 
144
163
  def output_cop_param_comments(output_buffer, params, default_cfg)
145
164
  config_params = params.reject { |p| p.start_with?('Supported') }
146
- output_buffer.puts(
147
- "# Configuration parameters: #{config_params.join(', ')}."
148
- )
165
+ output_buffer.puts("# Configuration parameters: #{config_params.join(', ')}.")
149
166
 
150
167
  params.each do |param|
151
168
  value = default_cfg[param]
152
169
  next unless value.is_a?(Array)
153
170
  next if value.empty?
154
171
 
155
- output_buffer.puts "# #{param}: #{value.join(', ')}"
172
+ output_buffer.puts "# #{param}: #{value.uniq.join(', ')}"
156
173
  end
157
174
  end
158
175
 
@@ -161,24 +178,29 @@ module RuboCop
161
178
  end
162
179
 
163
180
  def output_cop_config(output_buffer, cfg, cop_name)
164
- # 'Enabled' option will be put into file only if exclude
165
- # limit is exceeded.
166
- cfg_without_enabled = cfg.reject { |key| key == 'Enabled' }
167
-
181
+ filtered_cfg = filtered_config(cfg)
168
182
  output_buffer.puts "#{cop_name}:"
169
- cfg_without_enabled.each do |key, value|
183
+ filtered_cfg.each do |key, value|
170
184
  value = value[0] if value.is_a?(Array)
171
185
  output_buffer.puts " #{key}: #{value}"
172
186
  end
173
187
 
174
- output_offending_files(output_buffer, cfg_without_enabled, cop_name)
188
+ output_offending_files(output_buffer, filtered_cfg, cop_name)
189
+ end
190
+
191
+ def filtered_config(cfg)
192
+ # 'Enabled' option will be put into file only if exclude
193
+ # limit is exceeded.
194
+ rejected_keys = ['Enabled']
195
+ rejected_keys << 'EnforcedStyle' unless auto_gen_enforced_style?
196
+ cfg.reject { |key| rejected_keys.include?(key) }
175
197
  end
176
198
 
177
199
  def output_offending_files(output_buffer, cfg, cop_name)
178
200
  return unless cfg.empty?
179
201
 
180
202
  offending_files = @files_with_offenses[cop_name].sort
181
- if offending_files.count > @exclude_limit
203
+ if !no_exclude_limit? && offending_files.count > @exclude_limit
182
204
  output_buffer.puts ' Enabled: false'
183
205
  else
184
206
  output_exclude_list(output_buffer, offending_files, cop_name)
@@ -196,15 +218,28 @@ module RuboCop
196
218
  end
197
219
 
198
220
  def excludes(offending_files, cop_name, parent)
199
- # Exclude properties in .rubocop_todo.yml override default ones, as well
200
- # as any custom excludes in .rubocop.yml, so in order to retain those
201
- # excludes we must copy them.
202
- # There can be multiple .rubocop.yml files in subdirectories, but we
203
- # just look at the current working directory
221
+ # Exclude properties in .rubocop_todo.yml override default ones, as well as any custom
222
+ # excludes in .rubocop.yml, so in order to retain those excludes we must copy them.
223
+ # There can be multiple .rubocop.yml files in subdirectories, but we just look at the
224
+ # current working directory.
204
225
  config = ConfigStore.new.for(parent)
205
226
  cfg = config[cop_name] || {}
206
227
 
207
- ((cfg['Exclude'] || []) + offending_files).uniq
228
+ if merge_mode_for_exclude?(config) || merge_mode_for_exclude?(cfg)
229
+ offending_files
230
+ else
231
+ cop_exclude = cfg['Exclude']
232
+ if cop_exclude && cop_exclude != default_config(cop_name)['Exclude']
233
+ warn "`#{cop_name}: Exclude` in `#{smart_path(config.loaded_path)}` overrides a " \
234
+ 'generated `Exclude` in `.rubocop_todo.yml`. Either remove ' \
235
+ "`#{cop_name}: Exclude` or add `inherit_mode: merge: - Exclude`."
236
+ end
237
+ ((cop_exclude || []) + offending_files).uniq
238
+ end
239
+ end
240
+
241
+ def merge_mode_for_exclude?(cfg)
242
+ Array(cfg.to_h.dig('inherit_mode', 'merge')).include?('Exclude')
208
243
  end
209
244
 
210
245
  def output_exclude_path(output_buffer, exclude_path, parent)
@@ -219,6 +254,14 @@ module RuboCop
219
254
  regexp = exclude_path
220
255
  output_buffer.puts " - !ruby/regexp /#{regexp.source}/"
221
256
  end
257
+
258
+ def safe_autocorrect?(config)
259
+ config.fetch('Safe', true) && config.fetch('SafeAutoCorrect', true)
260
+ end
261
+
262
+ def no_exclude_limit?
263
+ @options[:no_exclude_limit] == false
264
+ end
222
265
  end
223
266
  end
224
267
  end
@@ -27,6 +27,8 @@ module RuboCop
27
27
  "[Todo] #{offense.message}"
28
28
  elsif offense.corrected?
29
29
  "[Corrected] #{offense.message}"
30
+ elsif offense.correctable?
31
+ "[Correctable] #{offense.message}"
30
32
  else
31
33
  offense.message
32
34
  end
@@ -9,32 +9,35 @@ module RuboCop
9
9
  # which invoke same method of each formatters.
10
10
  class FormatterSet < Array
11
11
  BUILTIN_FORMATTERS_FOR_KEYS = {
12
- '[a]utogenconf' => AutoGenConfigFormatter,
13
- '[c]lang' => ClangStyleFormatter,
14
- '[d]isabled' => DisabledLinesFormatter,
15
- '[e]macs' => EmacsStyleFormatter,
16
- '[fi]les' => FileListFormatter,
17
- '[fu]ubar' => FuubarStyleFormatter,
18
- '[h]tml' => HTMLFormatter,
19
- '[j]son' => JSONFormatter,
20
- '[o]ffenses' => OffenseCountFormatter,
21
- '[pa]cman' => PacmanFormatter,
22
- '[p]rogress' => ProgressFormatter,
23
- '[q]uiet' => QuietFormatter,
24
- '[s]imple' => SimpleTextFormatter,
25
- '[t]ap' => TapFormatter,
26
- '[w]orst' => WorstOffendersFormatter
12
+ '[a]utogenconf' => 'AutoGenConfigFormatter',
13
+ '[c]lang' => 'ClangStyleFormatter',
14
+ '[e]macs' => 'EmacsStyleFormatter',
15
+ '[fi]les' => 'FileListFormatter',
16
+ '[fu]ubar' => 'FuubarStyleFormatter',
17
+ '[g]ithub' => 'GitHubActionsFormatter',
18
+ '[h]tml' => 'HTMLFormatter',
19
+ '[j]son' => 'JSONFormatter',
20
+ '[ju]nit' => 'JUnitFormatter',
21
+ '[m]arkdown' => 'MarkdownFormatter',
22
+ '[o]ffenses' => 'OffenseCountFormatter',
23
+ '[pa]cman' => 'PacmanFormatter',
24
+ '[p]rogress' => 'ProgressFormatter',
25
+ '[q]uiet' => 'QuietFormatter',
26
+ '[s]imple' => 'SimpleTextFormatter',
27
+ '[t]ap' => 'TapFormatter',
28
+ '[w]orst' => 'WorstOffendersFormatter'
27
29
  }.freeze
28
30
 
29
31
  FORMATTER_APIS = %i[started finished].freeze
30
32
 
31
33
  FORMATTER_APIS.each do |method_name|
32
34
  define_method(method_name) do |*args|
33
- each { |f| f.send(method_name, *args) }
35
+ each { |f| f.public_send(method_name, *args) }
34
36
  end
35
37
  end
36
38
 
37
39
  def initialize(options = {})
40
+ super()
38
41
  @options = options # CLI options
39
42
  end
40
43
 
@@ -52,7 +55,7 @@ module RuboCop
52
55
  def add_formatter(formatter_type, output_path = nil)
53
56
  if output_path
54
57
  dir_path = File.dirname(output_path)
55
- FileUtils.mkdir_p(dir_path) unless File.exist?(dir_path)
58
+ FileUtils.mkdir_p(dir_path)
56
59
  output = File.open(output_path, 'w')
57
60
  else
58
61
  output = $stdout
@@ -82,16 +85,15 @@ module RuboCop
82
85
 
83
86
  def builtin_formatter_class(specified_key)
84
87
  matching_keys = BUILTIN_FORMATTERS_FOR_KEYS.keys.select do |key|
85
- key =~ /^\[#{specified_key}\]/ || specified_key == key.delete('[]')
88
+ /^\[#{specified_key}\]/.match?(key) || specified_key == key.delete('[]')
86
89
  end
87
90
 
88
91
  raise %(No formatter for "#{specified_key}") if matching_keys.empty?
89
92
 
90
- if matching_keys.size > 1
91
- raise %(Cannot determine formatter for "#{specified_key}")
92
- end
93
+ raise %(Cannot determine formatter for "#{specified_key}") if matching_keys.size > 1
93
94
 
94
- BUILTIN_FORMATTERS_FOR_KEYS[matching_keys.first]
95
+ formatter_name = BUILTIN_FORMATTERS_FOR_KEYS[matching_keys.first]
96
+ RuboCop::Formatter.const_get(formatter_name)
95
97
  end
96
98
 
97
99
  def custom_formatter_class(specified_class_name)
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Formatter
5
+ # This formatter formats report data as GitHub Workflow commands resulting
6
+ # in GitHub check annotations when run within GitHub Actions.
7
+ class GitHubActionsFormatter < BaseFormatter
8
+ ESCAPE_MAP = { '%' => '%25', "\n" => '%0A', "\r" => '%0D' }.freeze
9
+
10
+ def started(_target_files)
11
+ @offenses_for_files = {}
12
+ end
13
+
14
+ def file_finished(file, offenses)
15
+ @offenses_for_files[file] = offenses unless offenses.empty?
16
+ end
17
+
18
+ def finished(_inspected_files)
19
+ @offenses_for_files.each do |file, offenses|
20
+ offenses.each do |offense|
21
+ report_offense(file, offense)
22
+ end
23
+ end
24
+ output.puts
25
+ end
26
+
27
+ private
28
+
29
+ def github_escape(string)
30
+ string.gsub(Regexp.union(ESCAPE_MAP.keys), ESCAPE_MAP)
31
+ end
32
+
33
+ def minimum_severity_to_fail
34
+ @minimum_severity_to_fail ||= begin
35
+ # Unless given explicitly as `fail_level`, `:info` severity offenses do not fail
36
+ name = options.fetch(:fail_level, :refactor)
37
+ RuboCop::Cop::Severity.new(name)
38
+ end
39
+ end
40
+
41
+ def github_severity(offense)
42
+ offense.severity < minimum_severity_to_fail ? 'warning' : 'error'
43
+ end
44
+
45
+ def report_offense(file, offense)
46
+ output.printf(
47
+ "\n::%<severity>s file=%<file>s,line=%<line>d,col=%<column>d::%<message>s",
48
+ severity: github_severity(offense),
49
+ file: PathUtil.smart_path(file),
50
+ line: offense.line,
51
+ column: offense.real_column,
52
+ message: github_escape(offense.message)
53
+ )
54
+ end
55
+ end
56
+ end
57
+ end
@@ -1,18 +1,16 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'base64'
3
4
  require 'cgi'
4
5
  require 'erb'
5
6
  require 'ostruct'
6
- require 'base64'
7
- require_relative 'text_util'
8
7
 
9
8
  module RuboCop
10
9
  module Formatter
11
10
  # This formatter saves the output as an html file.
12
11
  class HTMLFormatter < BaseFormatter
13
12
  ELLIPSES = '<span class="extra-code">...</span>'
14
- TEMPLATE_PATH =
15
- File.expand_path('../../../assets/output.html.erb', __dir__)
13
+ TEMPLATE_PATH = File.expand_path('../../../assets/output.html.erb', __dir__)
16
14
 
17
15
  Color = Struct.new(:red, :green, :blue, :alpha) do
18
16
  def to_s
@@ -20,18 +18,19 @@ module RuboCop
20
18
  end
21
19
 
22
20
  def fade_out(amount)
23
- dup.tap do |color|
24
- color.alpha -= amount
25
- end
21
+ dup.tap { |color| color.alpha -= amount }
26
22
  end
27
23
  end
28
24
 
25
+ Summary = Struct.new(:offense_count, :inspected_files, :target_files, keyword_init: true)
26
+ FileOffenses = Struct.new(:path, :offenses, keyword_init: true)
27
+
29
28
  attr_reader :files, :summary
30
29
 
31
30
  def initialize(output, options = {})
32
31
  super
33
32
  @files = []
34
- @summary = OpenStruct.new(offense_count: 0)
33
+ @summary = Summary.new(offense_count: 0)
35
34
  end
36
35
 
37
36
  def started(target_files)
@@ -39,7 +38,7 @@ module RuboCop
39
38
  end
40
39
 
41
40
  def file_finished(file, offenses)
42
- files << OpenStruct.new(path: file, offenses: offenses)
41
+ files << FileOffenses.new(path: file, offenses: offenses)
43
42
  summary.offense_count += offenses.count
44
43
  end
45
44
 
@@ -53,14 +52,7 @@ module RuboCop
53
52
  context = ERBContext.new(files, summary)
54
53
 
55
54
  template = File.read(TEMPLATE_PATH, encoding: Encoding::UTF_8)
56
-
57
- # The following condition is workaround for until Ruby 2.6 is released.
58
- # https://github.com/ruby/ruby/commit/cc777d09f44fa909a336ba14f3aa802ffe16e010
59
- erb = if RUBY_VERSION >= '2.6'
60
- ERB.new(template, trim_mode: '-')
61
- else
62
- ERB.new(template, nil, '-')
63
- end
55
+ erb = ERB.new(template, trim_mode: '-')
64
56
  html = erb.result(context.binding)
65
57
 
66
58
  output.write html
@@ -79,8 +71,7 @@ module RuboCop
79
71
  fatal: Color.new(0xD2, 0x32, 0x2D, 1.0)
80
72
  }.freeze
81
73
 
82
- LOGO_IMAGE_PATH =
83
- File.expand_path('../../../assets/logo.png', __dir__)
74
+ LOGO_IMAGE_PATH = File.expand_path('../../../assets/logo.png', __dir__)
84
75
 
85
76
  attr_reader :files, :summary
86
77
 
@@ -90,24 +81,24 @@ module RuboCop
90
81
  end
91
82
 
92
83
  # Make Kernel#binding public.
84
+ # rubocop:disable Lint/UselessMethodDefinition
93
85
  def binding
94
86
  super
95
87
  end
88
+ # rubocop:enable Lint/UselessMethodDefinition
96
89
 
97
90
  def decorated_message(offense)
98
- offense.message.gsub(/`(.+?)`/) do
99
- "<code>#{Regexp.last_match(1)}</code>"
100
- end
91
+ offense.message.gsub(/`(.+?)`/) { "<code>#{Regexp.last_match(1)}</code>" }
101
92
  end
102
93
 
103
94
  def highlighted_source_line(offense)
104
95
  source_before_highlight(offense) +
105
- hightlight_source_tag(offense) +
96
+ highlight_source_tag(offense) +
106
97
  source_after_highlight(offense) +
107
98
  possible_ellipses(offense.location)
108
99
  end
109
100
 
110
- def hightlight_source_tag(offense)
101
+ def highlight_source_tag(offense)
111
102
  "<span class=\"highlight #{offense.severity}\">" \
112
103
  "#{escape(offense.highlighted_area.source)}" \
113
104
  '</span>'
@@ -120,11 +111,11 @@ module RuboCop
120
111
 
121
112
  def source_after_highlight(offense)
122
113
  source_line = offense.location.source_line
123
- escape(source_line[offense.highlighted_area.end_pos..-1])
114
+ escape(source_line[offense.highlighted_area.end_pos..])
124
115
  end
125
116
 
126
117
  def possible_ellipses(location)
127
- location.first_line == location.last_line ? '' : " #{ELLIPSES}"
118
+ location.single_line? ? '' : " #{ELLIPSES}"
128
119
  end
129
120
 
130
121
  def escape(string)
@@ -13,11 +13,7 @@ module RuboCop
13
13
 
14
14
  def initialize(output, options = {})
15
15
  super
16
- @output_hash = {
17
- metadata: metadata_hash,
18
- files: [],
19
- summary: { offense_count: 0 }
20
- }
16
+ @output_hash = { metadata: metadata_hash, files: [], summary: { offense_count: 0 } }
21
17
  end
22
18
 
23
19
  def started(target_files)
@@ -53,21 +49,25 @@ module RuboCop
53
49
 
54
50
  def hash_for_offense(offense)
55
51
  {
56
- severity: offense.severity.name,
57
- message: offense.message,
58
- cop_name: offense.cop_name,
59
- corrected: offense.corrected?,
60
- location: hash_for_location(offense)
52
+ severity: offense.severity.name,
53
+ message: offense.message,
54
+ cop_name: offense.cop_name,
55
+ corrected: offense.corrected?,
56
+ correctable: offense.correctable?,
57
+ location: hash_for_location(offense)
61
58
  }
62
59
  end
63
60
 
64
61
  # TODO: Consider better solution for Offense#real_column.
62
+ # The minimum value of `start_column: real_column` is 1.
63
+ # So, the minimum value of `last_column` should be 1.
64
+ # And non-zero value of `last_column` should be used as is.
65
65
  def hash_for_location(offense)
66
66
  {
67
67
  start_line: offense.line,
68
68
  start_column: offense.real_column,
69
69
  last_line: offense.last_line,
70
- last_column: offense.last_column,
70
+ last_column: offense.last_column.zero? ? 1 : offense.last_column,
71
71
  length: offense.location.length,
72
72
  # `line` and `column` exist for compatibility.
73
73
  # Use `start_line` and `start_column` instead.
@@ -0,0 +1,96 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rexml/document'
4
+
5
+ #
6
+ # This code is based on https://github.com/mikian/rubocop-junit-formatter.
7
+ #
8
+ # Copyright (c) 2015 Mikko Kokkonen
9
+ #
10
+ # MIT License
11
+ #
12
+ # https://github.com/mikian/rubocop-junit-formatter/blob/master/LICENSE.txt
13
+ #
14
+ module RuboCop
15
+ module Formatter
16
+ # This formatter formats the report data in JUnit format.
17
+ class JUnitFormatter < BaseFormatter
18
+ def initialize(output, options = {})
19
+ super
20
+
21
+ @document = REXML::Document.new.tap { |document| document << REXML::XMLDecl.new }
22
+ testsuites = REXML::Element.new('testsuites', @document)
23
+ testsuite = REXML::Element.new('testsuite', testsuites)
24
+ @testsuite = testsuite.tap { |element| element.add_attributes('name' => 'rubocop') }
25
+
26
+ reset_count
27
+ end
28
+
29
+ def file_finished(file, offenses)
30
+ @inspected_file_count += 1
31
+
32
+ # TODO: Returns all cops with the same behavior as
33
+ # the original rubocop-junit-formatter.
34
+ # https://github.com/mikian/rubocop-junit-formatter/blob/v0.1.4/lib/rubocop/formatter/junit_formatter.rb#L9
35
+ #
36
+ # In the future, it would be preferable to return only enabled cops.
37
+ Cop::Registry.all.each do |cop|
38
+ target_offenses = offenses_for_cop(offenses, cop)
39
+ @offense_count += target_offenses.count
40
+
41
+ next unless relevant_for_output?(options, target_offenses)
42
+
43
+ add_testcase_element_to_testsuite_element(file, target_offenses, cop)
44
+ end
45
+ end
46
+
47
+ def relevant_for_output?(options, target_offenses)
48
+ !options[:display_only_failed] || target_offenses.any?
49
+ end
50
+
51
+ def offenses_for_cop(all_offenses, cop)
52
+ all_offenses.select { |offense| offense.cop_name == cop.cop_name }
53
+ end
54
+
55
+ def add_testcase_element_to_testsuite_element(file, target_offenses, cop)
56
+ REXML::Element.new('testcase', @testsuite).tap do |testcase|
57
+ testcase.attributes['classname'] = classname_attribute_value(file)
58
+ testcase.attributes['name'] = cop.cop_name
59
+
60
+ add_failure_to(testcase, target_offenses, cop.cop_name)
61
+ end
62
+ end
63
+
64
+ def classname_attribute_value(file)
65
+ @classname_attribute_value_cache ||= Hash.new do |hash, key|
66
+ hash[key] = key.gsub(/\.rb\Z/, '').gsub("#{Dir.pwd}/", '').tr('/', '.')
67
+ end
68
+ @classname_attribute_value_cache[file]
69
+ end
70
+
71
+ def finished(_inspected_files)
72
+ @testsuite.add_attributes('tests' => @inspected_file_count, 'failures' => @offense_count)
73
+ @document.write(output, 2)
74
+ end
75
+
76
+ private
77
+
78
+ def reset_count
79
+ @inspected_file_count = 0
80
+ @offense_count = 0
81
+ end
82
+
83
+ def add_failure_to(testcase, offenses, cop_name)
84
+ # One failure per offense. Zero failures is a passing test case,
85
+ # for most surefire/nUnit parsers.
86
+ offenses.each do |offense|
87
+ REXML::Element.new('failure', testcase).tap do |failure|
88
+ failure.attributes['type'] = cop_name
89
+ failure.attributes['message'] = offense.message
90
+ failure.add_text(offense.location.to_s)
91
+ end
92
+ end
93
+ end
94
+ end
95
+ end
96
+ end