rubocop 0.48.1 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (851) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +84 -50
  4. data/assets/output.html.erb +1 -1
  5. data/config/default.yml +4311 -902
  6. data/config/obsoletion.yml +200 -0
  7. data/exe/rubocop +15 -0
  8. data/lib/rubocop.rb +679 -481
  9. data/lib/rubocop/ast_aliases.rb +8 -0
  10. data/lib/rubocop/cached_data.rb +5 -10
  11. data/lib/rubocop/cli.rb +73 -129
  12. data/lib/rubocop/cli/command.rb +22 -0
  13. data/lib/rubocop/cli/command/auto_genenerate_config.rb +132 -0
  14. data/lib/rubocop/cli/command/base.rb +35 -0
  15. data/lib/rubocop/cli/command/execute_runner.rb +100 -0
  16. data/lib/rubocop/cli/command/init_dotfile.rb +44 -0
  17. data/lib/rubocop/cli/command/show_cops.rb +74 -0
  18. data/lib/rubocop/cli/command/suggest_extensions.rb +81 -0
  19. data/lib/rubocop/cli/command/version.rb +18 -0
  20. data/lib/rubocop/cli/environment.rb +22 -0
  21. data/lib/rubocop/comment_config.rb +80 -78
  22. data/lib/rubocop/config.rb +124 -259
  23. data/lib/rubocop/config_loader.rb +182 -133
  24. data/lib/rubocop/config_loader_resolver.rb +237 -14
  25. data/lib/rubocop/config_obsoletion.rb +103 -0
  26. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  27. data/lib/rubocop/config_obsoletion/changed_parameter.rb +21 -0
  28. data/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
  29. data/lib/rubocop/config_obsoletion/extracted_cop.rb +44 -0
  30. data/lib/rubocop/config_obsoletion/parameter_rule.rb +44 -0
  31. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  32. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  33. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  34. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  35. data/lib/rubocop/config_regeneration.rb +33 -0
  36. data/lib/rubocop/config_store.rb +31 -7
  37. data/lib/rubocop/config_validator.rb +234 -0
  38. data/lib/rubocop/cop/autocorrect_logic.rb +83 -4
  39. data/lib/rubocop/cop/badge.rb +16 -32
  40. data/lib/rubocop/cop/base.rb +450 -0
  41. data/lib/rubocop/cop/bundler/duplicated_gem.rb +44 -16
  42. data/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
  43. data/lib/rubocop/cop/bundler/gem_version.rb +99 -0
  44. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +62 -0
  45. data/lib/rubocop/cop/bundler/ordered_gems.rb +18 -60
  46. data/lib/rubocop/cop/commissioner.rb +119 -68
  47. data/lib/rubocop/cop/cop.rb +93 -169
  48. data/lib/rubocop/cop/corrector.rb +81 -98
  49. data/lib/rubocop/cop/correctors/alignment_corrector.rb +136 -0
  50. data/lib/rubocop/cop/correctors/condition_corrector.rb +25 -0
  51. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +51 -0
  52. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +25 -0
  53. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +72 -0
  54. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  55. data/lib/rubocop/cop/correctors/line_break_corrector.rb +58 -0
  56. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +97 -0
  57. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +42 -0
  58. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +28 -0
  59. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +106 -0
  60. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +27 -0
  61. data/lib/rubocop/cop/correctors/space_corrector.rb +46 -0
  62. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +23 -0
  63. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +40 -0
  64. data/lib/rubocop/cop/documentation.rb +22 -0
  65. data/lib/rubocop/cop/exclude_limit.rb +26 -0
  66. data/lib/rubocop/cop/force.rb +3 -1
  67. data/lib/rubocop/cop/gemspec/date_assignment.rb +57 -0
  68. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +105 -0
  69. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +102 -0
  70. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +113 -0
  71. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +57 -0
  72. data/lib/rubocop/cop/generator.rb +212 -0
  73. data/lib/rubocop/cop/generator/configuration_injector.rb +65 -0
  74. data/lib/rubocop/cop/generator/require_file_injector.rb +75 -0
  75. data/lib/rubocop/cop/ignored_node.rb +1 -3
  76. data/lib/rubocop/cop/internal_affairs.rb +15 -0
  77. data/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
  78. data/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
  79. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
  80. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  81. data/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +151 -0
  82. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +41 -0
  83. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +56 -0
  84. data/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
  85. data/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +65 -0
  86. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +53 -0
  87. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +76 -0
  88. data/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
  89. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  90. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +100 -0
  91. data/lib/rubocop/cop/layout/argument_alignment.rb +110 -0
  92. data/lib/rubocop/cop/layout/array_alignment.rb +84 -0
  93. data/lib/rubocop/cop/{style/indent_assignment.rb → layout/assignment_indentation.rb} +21 -7
  94. data/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
  95. data/lib/rubocop/cop/{lint → layout}/block_alignment.rb +67 -60
  96. data/lib/rubocop/cop/layout/block_end_newline.rb +60 -0
  97. data/lib/rubocop/cop/layout/case_indentation.rb +203 -0
  98. data/lib/rubocop/cop/layout/class_structure.rb +324 -0
  99. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +124 -0
  100. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +191 -0
  101. data/lib/rubocop/cop/layout/comment_indentation.rb +137 -0
  102. data/lib/rubocop/cop/{lint → layout}/condition_position.rb +20 -8
  103. data/lib/rubocop/cop/{lint → layout}/def_end_alignment.rb +19 -24
  104. data/lib/rubocop/cop/{style → layout}/dot_position.rb +47 -27
  105. data/lib/rubocop/cop/layout/else_alignment.rb +156 -0
  106. data/lib/rubocop/cop/layout/empty_comment.rb +151 -0
  107. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +174 -0
  108. data/lib/rubocop/cop/{style → layout}/empty_line_after_magic_comment.rb +18 -17
  109. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  110. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +252 -0
  111. data/lib/rubocop/cop/{style → layout}/empty_lines.rb +26 -15
  112. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +206 -0
  113. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +103 -0
  114. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  115. data/lib/rubocop/cop/{style → layout}/empty_lines_around_begin_body.rb +7 -7
  116. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +38 -0
  117. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +85 -0
  118. data/lib/rubocop/cop/{style → layout}/empty_lines_around_exception_handling_keywords.rb +16 -17
  119. data/lib/rubocop/cop/{style → layout}/empty_lines_around_method_body.rb +10 -9
  120. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +59 -0
  121. data/lib/rubocop/cop/{lint → layout}/end_alignment.rb +59 -33
  122. data/lib/rubocop/cop/layout/end_of_line.rb +92 -0
  123. data/lib/rubocop/cop/layout/extra_spacing.rb +182 -0
  124. data/lib/rubocop/cop/layout/first_argument_indentation.rb +276 -0
  125. data/lib/rubocop/cop/layout/first_array_element_indentation.rb +173 -0
  126. data/lib/rubocop/cop/{style → layout}/first_array_element_line_break.rb +5 -5
  127. data/lib/rubocop/cop/layout/first_hash_element_indentation.rb +200 -0
  128. data/lib/rubocop/cop/{style → layout}/first_hash_element_line_break.rb +4 -4
  129. data/lib/rubocop/cop/{style → layout}/first_method_argument_line_break.rb +9 -10
  130. data/lib/rubocop/cop/{style → layout}/first_method_parameter_line_break.rb +7 -7
  131. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
  132. data/lib/rubocop/cop/layout/hash_alignment.rb +382 -0
  133. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +305 -0
  134. data/lib/rubocop/cop/layout/heredoc_indentation.rb +172 -0
  135. data/lib/rubocop/cop/layout/indentation_consistency.rb +205 -0
  136. data/lib/rubocop/cop/layout/indentation_style.rb +110 -0
  137. data/lib/rubocop/cop/{style → layout}/indentation_width.rb +138 -66
  138. data/lib/rubocop/cop/layout/initial_indentation.rb +55 -0
  139. data/lib/rubocop/cop/layout/leading_comment_space.rb +121 -0
  140. data/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  141. data/lib/rubocop/cop/layout/line_length.rb +267 -0
  142. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
  143. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +35 -0
  144. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +117 -0
  145. data/lib/rubocop/cop/layout/multiline_block_layout.rb +159 -0
  146. data/lib/rubocop/cop/{style → layout}/multiline_hash_brace_layout.rb +53 -19
  147. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +46 -0
  148. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +47 -0
  149. data/lib/rubocop/cop/{style → layout}/multiline_method_call_brace_layout.rb +69 -35
  150. data/lib/rubocop/cop/{style → layout}/multiline_method_call_indentation.rb +57 -41
  151. data/lib/rubocop/cop/{style → layout}/multiline_method_definition_brace_layout.rb +84 -38
  152. data/lib/rubocop/cop/{style → layout}/multiline_operation_indentation.rb +51 -11
  153. data/lib/rubocop/cop/layout/parameter_alignment.rb +119 -0
  154. data/lib/rubocop/cop/layout/redundant_line_break.rb +137 -0
  155. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +198 -0
  156. data/lib/rubocop/cop/layout/single_line_block_chain.rb +53 -0
  157. data/lib/rubocop/cop/{style → layout}/space_after_colon.rb +19 -10
  158. data/lib/rubocop/cop/layout/space_after_comma.rb +32 -0
  159. data/lib/rubocop/cop/layout/space_after_method_name.rb +39 -0
  160. data/lib/rubocop/cop/{style → layout}/space_after_not.rb +14 -14
  161. data/lib/rubocop/cop/{style → layout}/space_after_semicolon.rb +12 -4
  162. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +162 -0
  163. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +88 -0
  164. data/lib/rubocop/cop/{style → layout}/space_around_keyword.rb +69 -37
  165. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  166. data/lib/rubocop/cop/layout/space_around_operators.rb +241 -0
  167. data/lib/rubocop/cop/layout/space_before_block_braces.rb +152 -0
  168. data/lib/rubocop/cop/layout/space_before_brackets.rb +65 -0
  169. data/lib/rubocop/cop/layout/space_before_comma.rb +29 -0
  170. data/lib/rubocop/cop/layout/space_before_comment.rb +34 -0
  171. data/lib/rubocop/cop/{style → layout}/space_before_first_arg.rb +24 -17
  172. data/lib/rubocop/cop/layout/space_before_semicolon.rb +24 -0
  173. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +72 -0
  174. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +222 -0
  175. data/lib/rubocop/cop/{style → layout}/space_inside_array_percent_literal.rb +10 -20
  176. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +243 -0
  177. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +181 -0
  178. data/lib/rubocop/cop/layout/space_inside_parens.rb +130 -0
  179. data/lib/rubocop/cop/{style → layout}/space_inside_percent_literal_delimiters.rb +16 -20
  180. data/lib/rubocop/cop/{style → layout}/space_inside_range_literal.rb +8 -17
  181. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +139 -0
  182. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +64 -0
  183. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
  184. data/lib/rubocop/cop/layout/trailing_whitespace.rb +101 -0
  185. data/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
  186. data/lib/rubocop/cop/legacy/corrector.rb +27 -0
  187. data/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
  188. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +30 -22
  189. data/lib/rubocop/cop/lint/ambiguous_operator.rb +57 -9
  190. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +37 -7
  191. data/lib/rubocop/cop/lint/assignment_in_condition.rb +40 -23
  192. data/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  193. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +55 -0
  194. data/lib/rubocop/cop/lint/boolean_symbol.rb +58 -0
  195. data/lib/rubocop/cop/lint/circular_argument_reference.rb +5 -16
  196. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
  197. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  198. data/lib/rubocop/cop/lint/debugger.rb +63 -33
  199. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +101 -41
  200. data/lib/rubocop/cop/lint/deprecated_constants.rb +80 -0
  201. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +148 -0
  202. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +87 -0
  203. data/lib/rubocop/cop/lint/duplicate_branch.rb +154 -0
  204. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +4 -14
  205. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  206. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +3 -5
  207. data/lib/rubocop/cop/lint/duplicate_methods.rb +108 -24
  208. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +77 -0
  209. data/lib/rubocop/cop/lint/duplicate_require.rb +47 -0
  210. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  211. data/lib/rubocop/cop/lint/each_with_object_argument.rb +9 -4
  212. data/lib/rubocop/cop/lint/else_layout.rb +33 -8
  213. data/lib/rubocop/cop/lint/empty_block.rb +98 -0
  214. data/lib/rubocop/cop/lint/empty_class.rb +93 -0
  215. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  216. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -8
  217. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  218. data/lib/rubocop/cop/lint/empty_file.rb +48 -0
  219. data/lib/rubocop/cop/lint/empty_in_pattern.rb +62 -0
  220. data/lib/rubocop/cop/lint/empty_interpolation.rb +8 -11
  221. data/lib/rubocop/cop/lint/empty_when.rb +32 -9
  222. data/lib/rubocop/cop/lint/ensure_return.rb +31 -15
  223. data/lib/rubocop/cop/lint/erb_new_arguments.rb +162 -0
  224. data/lib/rubocop/cop/lint/flip_flop.rb +38 -0
  225. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  226. data/lib/rubocop/cop/lint/float_out_of_range.rb +6 -7
  227. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +93 -81
  228. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +38 -0
  229. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +154 -0
  230. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  231. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +27 -21
  232. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +44 -66
  233. data/lib/rubocop/cop/lint/inherit_exception.rb +43 -21
  234. data/lib/rubocop/cop/lint/interpolation_check.rb +53 -0
  235. data/lib/rubocop/cop/lint/lambda_without_literal_block.rb +44 -0
  236. data/lib/rubocop/cop/lint/{literal_in_condition.rb → literal_as_condition.rb} +48 -28
  237. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +71 -20
  238. data/lib/rubocop/cop/lint/loop.rb +31 -9
  239. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +81 -0
  240. data/lib/rubocop/cop/lint/missing_super.rb +101 -0
  241. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +36 -0
  242. data/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
  243. data/lib/rubocop/cop/lint/nested_method_definition.rb +23 -28
  244. data/lib/rubocop/cop/lint/nested_percent_literal.rb +63 -0
  245. data/lib/rubocop/cop/lint/next_without_accumulator.rb +5 -4
  246. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  247. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +169 -0
  248. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +20 -19
  249. data/lib/rubocop/cop/lint/number_conversion.rb +155 -0
  250. data/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
  251. data/lib/rubocop/cop/lint/or_assignment_to_constant.rb +39 -0
  252. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +83 -0
  253. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +96 -0
  254. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +40 -17
  255. data/lib/rubocop/cop/lint/percent_string_array.rb +18 -34
  256. data/lib/rubocop/cop/lint/percent_symbol_array.rb +19 -17
  257. data/lib/rubocop/cop/lint/raise_exception.rb +87 -0
  258. data/lib/rubocop/cop/lint/rand_one.rb +13 -6
  259. data/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +262 -0
  260. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +128 -0
  261. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +50 -0
  262. data/lib/rubocop/cop/lint/redundant_require_statement.rb +49 -0
  263. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +77 -0
  264. data/lib/rubocop/cop/lint/redundant_splat_expansion.rb +209 -0
  265. data/lib/rubocop/cop/lint/redundant_string_coercion.rb +52 -0
  266. data/lib/rubocop/cop/lint/redundant_with_index.rb +77 -0
  267. data/lib/rubocop/cop/lint/redundant_with_object.rb +78 -0
  268. data/lib/rubocop/cop/lint/regexp_as_condition.rb +31 -0
  269. data/lib/rubocop/cop/lint/require_parentheses.rb +11 -8
  270. data/lib/rubocop/cop/lint/rescue_exception.rb +5 -5
  271. data/lib/rubocop/cop/lint/rescue_type.rb +88 -0
  272. data/lib/rubocop/cop/lint/return_in_void_context.rb +71 -0
  273. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +22 -30
  274. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +92 -0
  275. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  276. data/lib/rubocop/cop/lint/script_permission.rb +73 -0
  277. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  278. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
  279. data/lib/rubocop/cop/lint/shadowed_argument.rb +176 -0
  280. data/lib/rubocop/cop/lint/shadowed_exception.rb +77 -43
  281. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +24 -10
  282. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  283. data/lib/rubocop/cop/lint/suppressed_exception.rb +132 -0
  284. data/lib/rubocop/cop/lint/symbol_conversion.rb +178 -0
  285. data/lib/rubocop/cop/lint/syntax.rb +17 -32
  286. data/lib/rubocop/cop/lint/to_enum_arguments.rb +89 -0
  287. data/lib/rubocop/cop/lint/to_json.rb +49 -0
  288. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  289. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
  290. data/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
  291. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +31 -13
  292. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +85 -0
  293. data/lib/rubocop/cop/lint/unified_integer.rb +10 -10
  294. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
  295. data/lib/rubocop/cop/lint/unreachable_code.rb +57 -12
  296. data/lib/rubocop/cop/lint/unreachable_loop.rb +196 -0
  297. data/lib/rubocop/cop/lint/unused_block_argument.rb +41 -14
  298. data/lib/rubocop/cop/lint/unused_method_argument.rb +70 -14
  299. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +79 -0
  300. data/lib/rubocop/cop/lint/uri_regexp.rb +38 -0
  301. data/lib/rubocop/cop/lint/useless_access_modifier.rb +120 -59
  302. data/lib/rubocop/cop/lint/useless_assignment.rb +13 -20
  303. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +10 -11
  304. data/lib/rubocop/cop/lint/useless_method_definition.rb +68 -0
  305. data/lib/rubocop/cop/lint/useless_setter_call.rb +30 -22
  306. data/lib/rubocop/cop/lint/useless_times.rb +109 -0
  307. data/lib/rubocop/cop/lint/void.rb +82 -50
  308. data/lib/rubocop/cop/message_annotator.rb +48 -24
  309. data/lib/rubocop/cop/metrics/abc_size.rb +29 -20
  310. data/lib/rubocop/cop/metrics/block_length.rb +54 -6
  311. data/lib/rubocop/cop/metrics/block_nesting.rb +7 -11
  312. data/lib/rubocop/cop/metrics/class_length.rb +44 -3
  313. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +38 -5
  314. data/lib/rubocop/cop/metrics/method_length.rb +43 -6
  315. data/lib/rubocop/cop/metrics/module_length.rb +35 -3
  316. data/lib/rubocop/cop/metrics/parameter_lists.rb +80 -8
  317. data/lib/rubocop/cop/metrics/perceived_complexity.rb +8 -10
  318. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +145 -0
  319. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +160 -0
  320. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  321. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
  322. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  323. data/lib/rubocop/cop/migration/department_name.rb +79 -0
  324. data/lib/rubocop/cop/mixin/alignment.rb +81 -0
  325. data/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
  326. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  327. data/lib/rubocop/cop/mixin/annotation_comment.rb +6 -0
  328. data/lib/rubocop/cop/mixin/array_min_size.rb +57 -0
  329. data/lib/rubocop/cop/mixin/array_syntax.rb +3 -1
  330. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  331. data/lib/rubocop/cop/mixin/check_assignment.rb +13 -9
  332. data/lib/rubocop/cop/mixin/check_line_breakable.rb +214 -0
  333. data/lib/rubocop/cop/mixin/code_length.rb +33 -6
  334. data/lib/rubocop/cop/mixin/comments_help.rb +42 -0
  335. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +20 -18
  336. data/lib/rubocop/cop/mixin/configurable_formatting.rb +5 -13
  337. data/lib/rubocop/cop/mixin/configurable_max.rb +7 -2
  338. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  339. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  340. data/lib/rubocop/cop/mixin/def_node.rb +12 -8
  341. data/lib/rubocop/cop/mixin/documentation_comment.rb +13 -10
  342. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +45 -34
  343. data/lib/rubocop/cop/mixin/empty_parameter.rb +25 -0
  344. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +29 -33
  345. data/lib/rubocop/cop/mixin/enforce_superclass.rb +38 -0
  346. data/lib/rubocop/cop/mixin/first_element_line_break.rb +17 -12
  347. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +35 -10
  348. data/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
  349. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +55 -16
  350. data/lib/rubocop/cop/mixin/hash_transform_method.rb +183 -0
  351. data/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  352. data/lib/rubocop/cop/mixin/ignored_methods.rb +52 -0
  353. data/lib/rubocop/cop/mixin/ignored_pattern.rb +3 -1
  354. data/lib/rubocop/cop/mixin/integer_node.rb +3 -1
  355. data/lib/rubocop/cop/mixin/interpolation.rb +25 -0
  356. data/lib/rubocop/cop/mixin/line_length_help.rb +90 -0
  357. data/lib/rubocop/cop/mixin/match_range.rb +6 -5
  358. data/lib/rubocop/cop/mixin/method_complexity.rb +58 -11
  359. data/lib/rubocop/cop/mixin/method_preference.rb +1 -1
  360. data/lib/rubocop/cop/mixin/min_body_length.rb +3 -1
  361. data/lib/rubocop/cop/mixin/{array_hash_indentation.rb → multiline_element_indentation.rb} +11 -6
  362. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  363. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +108 -61
  364. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +31 -42
  365. data/lib/rubocop/cop/mixin/negative_conditional.rb +9 -18
  366. data/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  367. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +58 -0
  368. data/lib/rubocop/cop/mixin/parentheses.rb +3 -9
  369. data/lib/rubocop/cop/mixin/percent_array.rb +57 -0
  370. data/lib/rubocop/cop/mixin/percent_literal.rb +3 -71
  371. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +95 -9
  372. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +50 -0
  373. data/lib/rubocop/cop/mixin/range_help.rb +128 -0
  374. data/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
  375. data/lib/rubocop/cop/mixin/rescue_node.rb +15 -8
  376. data/lib/rubocop/cop/mixin/safe_assignment.rb +9 -2
  377. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +15 -16
  378. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +19 -18
  379. data/lib/rubocop/cop/mixin/statement_modifier.rb +50 -25
  380. data/lib/rubocop/cop/mixin/string_help.rb +6 -1
  381. data/lib/rubocop/cop/mixin/string_literals_help.rb +5 -17
  382. data/lib/rubocop/cop/mixin/surrounding_space.rb +113 -23
  383. data/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
  384. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  385. data/lib/rubocop/cop/mixin/trailing_body.rb +25 -0
  386. data/lib/rubocop/cop/mixin/trailing_comma.rb +100 -52
  387. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +104 -0
  388. data/lib/rubocop/cop/mixin/unused_argument.rb +6 -19
  389. data/lib/rubocop/cop/mixin/visibility_help.rb +37 -0
  390. data/lib/rubocop/cop/naming/accessor_method_name.rb +71 -0
  391. data/lib/rubocop/cop/naming/ascii_identifiers.rb +93 -0
  392. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
  393. data/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  394. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +43 -0
  395. data/lib/rubocop/cop/naming/constant_name.rb +84 -0
  396. data/lib/rubocop/cop/{style → naming}/file_name.rb +79 -48
  397. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +68 -0
  398. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  399. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +279 -0
  400. data/lib/rubocop/cop/naming/method_name.rb +81 -0
  401. data/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  402. data/lib/rubocop/cop/naming/predicate_name.rb +105 -0
  403. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +156 -0
  404. data/lib/rubocop/cop/naming/variable_name.rb +54 -0
  405. data/lib/rubocop/cop/naming/variable_number.rb +146 -0
  406. data/lib/rubocop/cop/offense.rb +74 -23
  407. data/lib/rubocop/cop/registry.rb +140 -23
  408. data/lib/rubocop/cop/security/eval.rb +14 -5
  409. data/lib/rubocop/cop/security/json_load.rb +14 -12
  410. data/lib/rubocop/cop/security/marshal_load.rb +9 -7
  411. data/lib/rubocop/cop/security/open.rb +75 -0
  412. data/lib/rubocop/cop/security/yaml_load.rb +12 -10
  413. data/lib/rubocop/cop/severity.rb +5 -14
  414. data/lib/rubocop/cop/style/access_modifier_declarations.rb +136 -0
  415. data/lib/rubocop/cop/style/accessor_grouping.rb +150 -0
  416. data/lib/rubocop/cop/style/alias.rb +86 -57
  417. data/lib/rubocop/cop/style/and_or.rb +81 -53
  418. data/lib/rubocop/cop/style/arguments_forwarding.rb +143 -0
  419. data/lib/rubocop/cop/style/array_coercion.rb +69 -0
  420. data/lib/rubocop/cop/style/array_join.rb +19 -10
  421. data/lib/rubocop/cop/style/ascii_comments.rb +31 -9
  422. data/lib/rubocop/cop/style/attr.rb +33 -13
  423. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +19 -13
  424. data/lib/rubocop/cop/style/bare_percent_literals.rb +31 -12
  425. data/lib/rubocop/cop/style/begin_block.rb +9 -3
  426. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
  427. data/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
  428. data/lib/rubocop/cop/style/block_comments.rb +40 -20
  429. data/lib/rubocop/cop/style/block_delimiters.rb +213 -59
  430. data/lib/rubocop/cop/style/case_equality.rb +67 -4
  431. data/lib/rubocop/cop/style/case_like_if.rb +258 -0
  432. data/lib/rubocop/cop/style/character_literal.rb +22 -15
  433. data/lib/rubocop/cop/style/class_and_module_children.rb +118 -17
  434. data/lib/rubocop/cop/style/class_check.rb +31 -17
  435. data/lib/rubocop/cop/style/class_equality_comparison.rb +67 -0
  436. data/lib/rubocop/cop/style/class_methods.rb +18 -31
  437. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  438. data/lib/rubocop/cop/style/class_vars.rb +48 -7
  439. data/lib/rubocop/cop/style/collection_compact.rb +91 -0
  440. data/lib/rubocop/cop/style/collection_methods.rb +52 -17
  441. data/lib/rubocop/cop/style/colon_method_call.rb +26 -13
  442. data/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  443. data/lib/rubocop/cop/style/combinable_loops.rb +92 -0
  444. data/lib/rubocop/cop/style/command_literal.rb +104 -42
  445. data/lib/rubocop/cop/style/comment_annotation.rb +62 -24
  446. data/lib/rubocop/cop/style/commented_keyword.rb +86 -0
  447. data/lib/rubocop/cop/style/conditional_assignment.rb +143 -182
  448. data/lib/rubocop/cop/style/constant_visibility.rb +106 -0
  449. data/lib/rubocop/cop/style/copyright.rb +42 -35
  450. data/lib/rubocop/cop/style/date_time.rb +88 -0
  451. data/lib/rubocop/cop/style/def_with_parentheses.rb +36 -13
  452. data/lib/rubocop/cop/style/dir.rb +47 -0
  453. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
  454. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  455. data/lib/rubocop/cop/style/documentation.rb +114 -22
  456. data/lib/rubocop/cop/style/documentation_method.rb +56 -10
  457. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  458. data/lib/rubocop/cop/style/double_negation.rb +52 -8
  459. data/lib/rubocop/cop/style/each_for_simple_loop.rb +16 -18
  460. data/lib/rubocop/cop/style/each_with_object.rb +34 -17
  461. data/lib/rubocop/cop/style/empty_block_parameter.rb +47 -0
  462. data/lib/rubocop/cop/style/empty_case_condition.rb +32 -13
  463. data/lib/rubocop/cop/style/empty_else.rb +56 -27
  464. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +44 -0
  465. data/lib/rubocop/cop/style/empty_literal.rb +63 -33
  466. data/lib/rubocop/cop/style/empty_method.rb +37 -35
  467. data/lib/rubocop/cop/style/encoding.rb +20 -60
  468. data/lib/rubocop/cop/style/end_block.rb +15 -4
  469. data/lib/rubocop/cop/style/endless_method.rb +101 -0
  470. data/lib/rubocop/cop/style/eval_with_location.rb +237 -0
  471. data/lib/rubocop/cop/style/even_odd.rb +16 -16
  472. data/lib/rubocop/cop/style/expand_path_arguments.rb +196 -0
  473. data/lib/rubocop/cop/style/explicit_block_argument.rb +114 -0
  474. data/lib/rubocop/cop/style/exponential_notation.rb +116 -0
  475. data/lib/rubocop/cop/style/float_division.rb +143 -0
  476. data/lib/rubocop/cop/style/for.rb +49 -17
  477. data/lib/rubocop/cop/style/format_string.rb +97 -10
  478. data/lib/rubocop/cop/style/format_string_token.rb +177 -0
  479. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +155 -47
  480. data/lib/rubocop/cop/style/global_std_stream.rb +66 -0
  481. data/lib/rubocop/cop/style/global_vars.rb +16 -6
  482. data/lib/rubocop/cop/style/guard_clause.rb +69 -18
  483. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  484. data/lib/rubocop/cop/style/hash_conversion.rb +133 -0
  485. data/lib/rubocop/cop/style/hash_each_methods.rb +103 -0
  486. data/lib/rubocop/cop/style/hash_except.rb +96 -0
  487. data/lib/rubocop/cop/style/hash_like_case.rb +77 -0
  488. data/lib/rubocop/cop/style/hash_syntax.rb +99 -94
  489. data/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
  490. data/lib/rubocop/cop/style/hash_transform_values.rb +92 -0
  491. data/lib/rubocop/cop/style/identical_conditional_branches.rb +53 -29
  492. data/lib/rubocop/cop/style/if_inside_else.rb +101 -11
  493. data/lib/rubocop/cop/style/if_unless_modifier.rb +162 -44
  494. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +13 -4
  495. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +122 -0
  496. data/lib/rubocop/cop/style/if_with_semicolon.rb +62 -4
  497. data/lib/rubocop/cop/style/implicit_runtime_error.rb +10 -7
  498. data/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
  499. data/lib/rubocop/cop/style/infinite_loop.rb +65 -27
  500. data/lib/rubocop/cop/style/inline_comment.rb +7 -5
  501. data/lib/rubocop/cop/style/inverse_methods.rb +99 -44
  502. data/lib/rubocop/cop/style/ip_addresses.rb +75 -0
  503. data/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
  504. data/lib/rubocop/cop/style/lambda.rb +26 -110
  505. data/lib/rubocop/cop/style/lambda_call.rb +29 -19
  506. data/lib/rubocop/cop/style/line_end_concatenation.rb +40 -34
  507. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +185 -52
  508. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +189 -0
  509. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +44 -0
  510. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +27 -18
  511. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +19 -10
  512. data/lib/rubocop/cop/style/method_def_parentheses.rb +122 -45
  513. data/lib/rubocop/cop/style/min_max.rb +64 -0
  514. data/lib/rubocop/cop/style/missing_else.rb +88 -20
  515. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
  516. data/lib/rubocop/cop/style/mixin_grouping.rb +66 -28
  517. data/lib/rubocop/cop/style/mixin_usage.rb +72 -0
  518. data/lib/rubocop/cop/style/module_function.rb +111 -26
  519. data/lib/rubocop/cop/style/multiline_block_chain.rb +21 -15
  520. data/lib/rubocop/cop/style/multiline_if_modifier.rb +8 -11
  521. data/lib/rubocop/cop/style/multiline_if_then.rb +14 -17
  522. data/lib/rubocop/cop/style/multiline_in_pattern_then.rb +62 -0
  523. data/lib/rubocop/cop/style/multiline_memoization.rb +44 -25
  524. data/lib/rubocop/cop/style/multiline_method_signature.rb +91 -0
  525. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +45 -5
  526. data/lib/rubocop/cop/style/multiline_when_then.rb +75 -0
  527. data/lib/rubocop/cop/style/multiple_comparison.rb +157 -0
  528. data/lib/rubocop/cop/style/mutable_constant.rb +132 -18
  529. data/lib/rubocop/cop/style/negated_if.rb +33 -38
  530. data/lib/rubocop/cop/style/negated_if_else_condition.rb +128 -0
  531. data/lib/rubocop/cop/style/negated_unless.rb +88 -0
  532. data/lib/rubocop/cop/style/negated_while.rb +25 -17
  533. data/lib/rubocop/cop/style/nested_modifier.rb +36 -23
  534. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +38 -29
  535. data/lib/rubocop/cop/style/nested_ternary_operator.rb +41 -4
  536. data/lib/rubocop/cop/style/next.rb +77 -67
  537. data/lib/rubocop/cop/style/nil_comparison.rb +62 -14
  538. data/lib/rubocop/cop/style/nil_lambda.rb +70 -0
  539. data/lib/rubocop/cop/style/non_nil_check.rb +100 -63
  540. data/lib/rubocop/cop/style/not.rb +38 -31
  541. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +47 -25
  542. data/lib/rubocop/cop/style/numeric_literals.rb +40 -35
  543. data/lib/rubocop/cop/style/numeric_predicate.rb +33 -43
  544. data/lib/rubocop/cop/style/one_line_conditional.rb +100 -28
  545. data/lib/rubocop/cop/style/option_hash.rb +21 -25
  546. data/lib/rubocop/cop/style/optional_arguments.rb +4 -11
  547. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  548. data/lib/rubocop/cop/style/or_assignment.rb +97 -0
  549. data/lib/rubocop/cop/style/parallel_assignment.rb +42 -48
  550. data/lib/rubocop/cop/style/parentheses_around_condition.rb +76 -14
  551. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +42 -23
  552. data/lib/rubocop/cop/style/percent_q_literals.rb +31 -13
  553. data/lib/rubocop/cop/style/perl_backrefs.rb +91 -16
  554. data/lib/rubocop/cop/style/preferred_hash_methods.rb +15 -24
  555. data/lib/rubocop/cop/style/proc.rb +18 -10
  556. data/lib/rubocop/cop/style/quoted_symbols.rb +105 -0
  557. data/lib/rubocop/cop/style/raise_args.rb +53 -46
  558. data/lib/rubocop/cop/style/random_with_offset.rb +153 -0
  559. data/lib/rubocop/cop/style/redundant_argument.rb +85 -0
  560. data/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
  561. data/lib/rubocop/cop/style/redundant_begin.rb +119 -9
  562. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +17 -11
  563. data/lib/rubocop/cop/style/redundant_condition.rb +137 -0
  564. data/lib/rubocop/cop/style/redundant_conditional.rb +96 -0
  565. data/lib/rubocop/cop/style/redundant_exception.rb +28 -18
  566. data/lib/rubocop/cop/style/redundant_fetch_block.rb +115 -0
  567. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +52 -0
  568. data/lib/rubocop/cop/style/redundant_freeze.rb +37 -13
  569. data/lib/rubocop/cop/style/redundant_interpolation.rb +103 -0
  570. data/lib/rubocop/cop/style/redundant_parentheses.rb +99 -54
  571. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +39 -26
  572. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +104 -0
  573. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +118 -0
  574. data/lib/rubocop/cop/style/redundant_return.rb +109 -59
  575. data/lib/rubocop/cop/style/redundant_self.rb +75 -50
  576. data/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
  577. data/lib/rubocop/cop/style/redundant_sort.rb +160 -0
  578. data/lib/rubocop/cop/{performance → style}/redundant_sort_by.rb +15 -13
  579. data/lib/rubocop/cop/style/regexp_literal.rb +142 -43
  580. data/lib/rubocop/cop/style/rescue_modifier.rb +77 -14
  581. data/lib/rubocop/cop/style/rescue_standard_error.rb +126 -0
  582. data/lib/rubocop/cop/style/return_nil.rb +94 -0
  583. data/lib/rubocop/cop/style/safe_navigation.rb +193 -58
  584. data/lib/rubocop/cop/{performance → style}/sample.rb +29 -26
  585. data/lib/rubocop/cop/style/self_assignment.rb +24 -16
  586. data/lib/rubocop/cop/style/semicolon.rb +48 -17
  587. data/lib/rubocop/cop/style/send.rb +15 -7
  588. data/lib/rubocop/cop/style/signal_exception.rb +134 -27
  589. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  590. data/lib/rubocop/cop/style/single_line_block_params.rb +72 -23
  591. data/lib/rubocop/cop/style/single_line_methods.rb +95 -37
  592. data/lib/rubocop/cop/style/slicing_with_range.rb +38 -0
  593. data/lib/rubocop/cop/style/sole_nested_conditional.rb +176 -0
  594. data/lib/rubocop/cop/style/special_global_vars.rb +80 -58
  595. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +35 -69
  596. data/lib/rubocop/cop/style/static_class.rb +97 -0
  597. data/lib/rubocop/cop/style/stderr_puts.rb +57 -0
  598. data/lib/rubocop/cop/style/string_chars.rb +39 -0
  599. data/lib/rubocop/cop/style/string_concatenation.rb +142 -0
  600. data/lib/rubocop/cop/style/string_hash_keys.rb +51 -0
  601. data/lib/rubocop/cop/style/string_literals.rb +44 -13
  602. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +24 -3
  603. data/lib/rubocop/cop/style/string_methods.rb +17 -15
  604. data/lib/rubocop/cop/{performance/lstrip_rstrip.rb → style/strip.rb} +18 -17
  605. data/lib/rubocop/cop/style/struct_inheritance.rb +45 -9
  606. data/lib/rubocop/cop/style/swap_values.rb +108 -0
  607. data/lib/rubocop/cop/style/symbol_array.rb +56 -46
  608. data/lib/rubocop/cop/style/symbol_literal.rb +6 -10
  609. data/lib/rubocop/cop/style/symbol_proc.rb +63 -78
  610. data/lib/rubocop/cop/style/ternary_parentheses.rb +95 -77
  611. data/lib/rubocop/cop/style/top_level_method_definition.rb +83 -0
  612. data/lib/rubocop/cop/style/trailing_body_on_class.rb +40 -0
  613. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +55 -0
  614. data/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  615. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +69 -27
  616. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
  617. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +86 -0
  618. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
  619. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +65 -0
  620. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +79 -40
  621. data/lib/rubocop/cop/style/trivial_accessors.rb +158 -82
  622. data/lib/rubocop/cop/style/unless_else.rb +25 -13
  623. data/lib/rubocop/cop/style/unless_logical_operators.rb +105 -0
  624. data/lib/rubocop/cop/style/unpack_first.rb +59 -0
  625. data/lib/rubocop/cop/style/variable_interpolation.rb +26 -25
  626. data/lib/rubocop/cop/style/when_then.rb +20 -7
  627. data/lib/rubocop/cop/style/while_until_do.rb +31 -18
  628. data/lib/rubocop/cop/style/while_until_modifier.rb +36 -24
  629. data/lib/rubocop/cop/style/word_array.rb +40 -91
  630. data/lib/rubocop/cop/style/yoda_condition.rb +155 -0
  631. data/lib/rubocop/cop/style/zero_length_predicate.rb +60 -31
  632. data/lib/rubocop/cop/team.rb +171 -105
  633. data/lib/rubocop/cop/util.rb +44 -194
  634. data/lib/rubocop/cop/utils/format_string.rb +133 -0
  635. data/lib/rubocop/cop/variable_force.rb +47 -51
  636. data/lib/rubocop/cop/variable_force/assignment.rb +10 -4
  637. data/lib/rubocop/cop/variable_force/branch.rb +22 -9
  638. data/lib/rubocop/cop/variable_force/branchable.rb +2 -0
  639. data/lib/rubocop/cop/variable_force/reference.rb +1 -3
  640. data/lib/rubocop/cop/variable_force/scope.rb +13 -14
  641. data/lib/rubocop/cop/variable_force/variable.rb +25 -14
  642. data/lib/rubocop/cop/variable_force/variable_table.rb +4 -3
  643. data/lib/rubocop/cops_documentation_generator.rb +270 -0
  644. data/lib/rubocop/core_ext/string.rb +23 -0
  645. data/lib/rubocop/directive_comment.rb +96 -0
  646. data/lib/rubocop/error.rb +24 -0
  647. data/lib/rubocop/ext/processed_source.rb +18 -0
  648. data/lib/rubocop/ext/regexp_node.rb +87 -0
  649. data/lib/rubocop/ext/regexp_parser.rb +92 -0
  650. data/lib/rubocop/file_finder.rb +41 -0
  651. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  652. data/lib/rubocop/formatter/base_formatter.rb +3 -7
  653. data/lib/rubocop/formatter/clang_style_formatter.rb +13 -8
  654. data/lib/rubocop/formatter/disabled_config_formatter.rb +110 -58
  655. data/lib/rubocop/formatter/emacs_style_formatter.rb +24 -9
  656. data/lib/rubocop/formatter/file_list_formatter.rb +2 -1
  657. data/lib/rubocop/formatter/formatter_set.rb +20 -16
  658. data/lib/rubocop/formatter/fuubar_style_formatter.rb +2 -2
  659. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +44 -0
  660. data/lib/rubocop/formatter/html_formatter.rb +18 -15
  661. data/lib/rubocop/formatter/json_formatter.rb +17 -14
  662. data/lib/rubocop/formatter/junit_formatter.rb +93 -0
  663. data/lib/rubocop/formatter/offense_count_formatter.rb +21 -2
  664. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  665. data/lib/rubocop/formatter/progress_formatter.rb +4 -5
  666. data/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  667. data/lib/rubocop/formatter/simple_text_formatter.rb +61 -26
  668. data/lib/rubocop/formatter/tap_formatter.rb +86 -0
  669. data/lib/rubocop/formatter/worst_offenders_formatter.rb +4 -2
  670. data/lib/rubocop/lockfile.rb +40 -0
  671. data/lib/rubocop/magic_comment.rb +45 -12
  672. data/lib/rubocop/name_similarity.rb +18 -10
  673. data/lib/rubocop/options.rb +311 -140
  674. data/lib/rubocop/path_util.rb +57 -5
  675. data/lib/rubocop/platform.rb +1 -1
  676. data/lib/rubocop/rake_task.rb +27 -32
  677. data/lib/rubocop/remote_config.rb +32 -8
  678. data/lib/rubocop/result_cache.rb +89 -39
  679. data/lib/rubocop/rspec/cop_helper.rb +18 -46
  680. data/lib/rubocop/rspec/expect_offense.rb +329 -0
  681. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +1 -5
  682. data/lib/rubocop/rspec/shared_contexts.rb +92 -53
  683. data/lib/rubocop/rspec/support.rb +9 -4
  684. data/lib/rubocop/runner.rb +174 -86
  685. data/lib/rubocop/string_interpreter.rb +11 -8
  686. data/lib/rubocop/target_finder.rb +102 -93
  687. data/lib/rubocop/target_ruby.rb +264 -0
  688. data/lib/rubocop/util.rb +16 -0
  689. data/lib/rubocop/version.rb +71 -5
  690. data/lib/rubocop/yaml_duplication_checker.rb +40 -0
  691. metadata +495 -233
  692. data/bin/rubocop +0 -17
  693. data/config/disabled.yml +0 -119
  694. data/config/enabled.yml +0 -1713
  695. data/lib/rubocop/ast/builder.rb +0 -64
  696. data/lib/rubocop/ast/node.rb +0 -610
  697. data/lib/rubocop/ast/node/and_node.rb +0 -37
  698. data/lib/rubocop/ast/node/array_node.rb +0 -48
  699. data/lib/rubocop/ast/node/case_node.rb +0 -64
  700. data/lib/rubocop/ast/node/ensure_node.rb +0 -25
  701. data/lib/rubocop/ast/node/for_node.rb +0 -53
  702. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  703. data/lib/rubocop/ast/node/if_node.rb +0 -138
  704. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  705. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -23
  706. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  707. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  708. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  709. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  710. data/lib/rubocop/ast/node/or_node.rb +0 -37
  711. data/lib/rubocop/ast/node/pair_node.rb +0 -64
  712. data/lib/rubocop/ast/node/resbody_node.rb +0 -25
  713. data/lib/rubocop/ast/node/send_node.rb +0 -195
  714. data/lib/rubocop/ast/node/until_node.rb +0 -43
  715. data/lib/rubocop/ast/node/when_node.rb +0 -61
  716. data/lib/rubocop/ast/node/while_node.rb +0 -43
  717. data/lib/rubocop/ast/sexp.rb +0 -16
  718. data/lib/rubocop/ast/traversal.rb +0 -171
  719. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  720. data/lib/rubocop/cop/lint/handle_exceptions.rb +0 -56
  721. data/lib/rubocop/cop/lint/invalid_character_literal.rb +0 -41
  722. data/lib/rubocop/cop/lint/multiple_compare.rb +0 -48
  723. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +0 -58
  724. data/lib/rubocop/cop/lint/unneeded_disable.rb +0 -231
  725. data/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +0 -141
  726. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  727. data/lib/rubocop/cop/metrics/line_length.rb +0 -168
  728. data/lib/rubocop/cop/mixin/access_modifier_node.rb +0 -41
  729. data/lib/rubocop/cop/mixin/autocorrect_alignment.rb +0 -149
  730. data/lib/rubocop/cop/mixin/classish_length.rb +0 -36
  731. data/lib/rubocop/cop/mixin/on_method_def.rb +0 -44
  732. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -34
  733. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  734. data/lib/rubocop/cop/mixin/space_inside.rb +0 -76
  735. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  736. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -39
  737. data/lib/rubocop/cop/performance/case_when_splat.rb +0 -176
  738. data/lib/rubocop/cop/performance/casecmp.rb +0 -107
  739. data/lib/rubocop/cop/performance/compare_with_block.rb +0 -61
  740. data/lib/rubocop/cop/performance/count.rb +0 -98
  741. data/lib/rubocop/cop/performance/detect.rb +0 -107
  742. data/lib/rubocop/cop/performance/double_start_end_with.rb +0 -102
  743. data/lib/rubocop/cop/performance/end_with.rb +0 -55
  744. data/lib/rubocop/cop/performance/fixed_size.rb +0 -56
  745. data/lib/rubocop/cop/performance/flat_map.rb +0 -73
  746. data/lib/rubocop/cop/performance/hash_each_methods.rb +0 -84
  747. data/lib/rubocop/cop/performance/range_include.rb +0 -41
  748. data/lib/rubocop/cop/performance/redundant_block_call.rb +0 -93
  749. data/lib/rubocop/cop/performance/redundant_match.rb +0 -55
  750. data/lib/rubocop/cop/performance/redundant_merge.rb +0 -149
  751. data/lib/rubocop/cop/performance/regexp_match.rb +0 -215
  752. data/lib/rubocop/cop/performance/reverse_each.rb +0 -40
  753. data/lib/rubocop/cop/performance/size.rb +0 -71
  754. data/lib/rubocop/cop/performance/start_with.rb +0 -58
  755. data/lib/rubocop/cop/performance/string_replacement.rb +0 -170
  756. data/lib/rubocop/cop/performance/times_map.rb +0 -61
  757. data/lib/rubocop/cop/rails/action_filter.rb +0 -96
  758. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -68
  759. data/lib/rubocop/cop/rails/blank.rb +0 -132
  760. data/lib/rubocop/cop/rails/date.rb +0 -127
  761. data/lib/rubocop/cop/rails/delegate.rb +0 -106
  762. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -51
  763. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -81
  764. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -43
  765. data/lib/rubocop/cop/rails/exit.rb +0 -61
  766. data/lib/rubocop/cop/rails/file_path.rb +0 -75
  767. data/lib/rubocop/cop/rails/find_by.rb +0 -51
  768. data/lib/rubocop/cop/rails/find_each.rb +0 -47
  769. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -18
  770. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -106
  771. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  772. data/lib/rubocop/cop/rails/output.rb +0 -23
  773. data/lib/rubocop/cop/rails/output_safety.rb +0 -54
  774. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -106
  775. data/lib/rubocop/cop/rails/present.rb +0 -137
  776. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -65
  777. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -57
  778. data/lib/rubocop/cop/rails/request_referer.rb +0 -56
  779. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -216
  780. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -91
  781. data/lib/rubocop/cop/rails/save_bang.rb +0 -155
  782. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  783. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -63
  784. data/lib/rubocop/cop/rails/time_zone.rb +0 -197
  785. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -93
  786. data/lib/rubocop/cop/rails/validation.rb +0 -64
  787. data/lib/rubocop/cop/style/access_modifier_indentation.rb +0 -80
  788. data/lib/rubocop/cop/style/accessor_method_name.rb +0 -45
  789. data/lib/rubocop/cop/style/align_array.rb +0 -20
  790. data/lib/rubocop/cop/style/align_hash.rb +0 -235
  791. data/lib/rubocop/cop/style/align_parameters.rb +0 -69
  792. data/lib/rubocop/cop/style/ascii_identifiers.rb +0 -36
  793. data/lib/rubocop/cop/style/block_end_newline.rb +0 -56
  794. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -138
  795. data/lib/rubocop/cop/style/case_indentation.rb +0 -100
  796. data/lib/rubocop/cop/style/class_and_module_camel_case.rb +0 -29
  797. data/lib/rubocop/cop/style/closing_parenthesis_indentation.rb +0 -88
  798. data/lib/rubocop/cop/style/comment_indentation.rb +0 -71
  799. data/lib/rubocop/cop/style/constant_name.rb +0 -29
  800. data/lib/rubocop/cop/style/else_alignment.rb +0 -105
  801. data/lib/rubocop/cop/style/empty_line_between_defs.rb +0 -143
  802. data/lib/rubocop/cop/style/empty_lines_around_access_modifier.rb +0 -95
  803. data/lib/rubocop/cop/style/empty_lines_around_block_body.rb +0 -41
  804. data/lib/rubocop/cop/style/empty_lines_around_class_body.rb +0 -39
  805. data/lib/rubocop/cop/style/empty_lines_around_module_body.rb +0 -44
  806. data/lib/rubocop/cop/style/end_of_line.rb +0 -52
  807. data/lib/rubocop/cop/style/extra_spacing.rb +0 -237
  808. data/lib/rubocop/cop/style/first_parameter_indentation.rb +0 -109
  809. data/lib/rubocop/cop/style/flip_flop.rb +0 -20
  810. data/lib/rubocop/cop/style/indent_array.rb +0 -114
  811. data/lib/rubocop/cop/style/indent_hash.rb +0 -134
  812. data/lib/rubocop/cop/style/indent_heredoc.rb +0 -173
  813. data/lib/rubocop/cop/style/indentation_consistency.rb +0 -51
  814. data/lib/rubocop/cop/style/initial_indentation.rb +0 -42
  815. data/lib/rubocop/cop/style/leading_comment_space.rb +0 -43
  816. data/lib/rubocop/cop/style/method_missing.rb +0 -81
  817. data/lib/rubocop/cop/style/method_name.rb +0 -28
  818. data/lib/rubocop/cop/style/multiline_array_brace_layout.rb +0 -81
  819. data/lib/rubocop/cop/style/multiline_assignment_layout.rb +0 -88
  820. data/lib/rubocop/cop/style/multiline_block_layout.rb +0 -134
  821. data/lib/rubocop/cop/style/op_method.rb +0 -41
  822. data/lib/rubocop/cop/style/predicate_name.rb +0 -67
  823. data/lib/rubocop/cop/style/rescue_ensure_alignment.rb +0 -86
  824. data/lib/rubocop/cop/style/space_after_comma.rb +0 -21
  825. data/lib/rubocop/cop/style/space_after_method_name.rb +0 -37
  826. data/lib/rubocop/cop/style/space_around_block_parameters.rb +0 -109
  827. data/lib/rubocop/cop/style/space_around_equals_in_parameter_default.rb +0 -68
  828. data/lib/rubocop/cop/style/space_around_operators.rb +0 -142
  829. data/lib/rubocop/cop/style/space_before_block_braces.rb +0 -54
  830. data/lib/rubocop/cop/style/space_before_comma.rb +0 -16
  831. data/lib/rubocop/cop/style/space_before_comment.rb +0 -27
  832. data/lib/rubocop/cop/style/space_before_semicolon.rb +0 -16
  833. data/lib/rubocop/cop/style/space_in_lambda_literal.rb +0 -87
  834. data/lib/rubocop/cop/style/space_inside_block_braces.rb +0 -158
  835. data/lib/rubocop/cop/style/space_inside_brackets.rb +0 -20
  836. data/lib/rubocop/cop/style/space_inside_hash_literal_braces.rb +0 -150
  837. data/lib/rubocop/cop/style/space_inside_parens.rb +0 -16
  838. data/lib/rubocop/cop/style/space_inside_string_interpolation.rb +0 -65
  839. data/lib/rubocop/cop/style/tab.rb +0 -57
  840. data/lib/rubocop/cop/style/trailing_blank_lines.rb +0 -78
  841. data/lib/rubocop/cop/style/trailing_comma_in_literal.rb +0 -56
  842. data/lib/rubocop/cop/style/trailing_whitespace.rb +0 -28
  843. data/lib/rubocop/cop/style/unneeded_interpolation.rb +0 -98
  844. data/lib/rubocop/cop/style/variable_name.rb +0 -39
  845. data/lib/rubocop/cop/style/variable_number.rb +0 -78
  846. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  847. data/lib/rubocop/node_pattern.rb +0 -543
  848. data/lib/rubocop/processed_source.rb +0 -151
  849. data/lib/rubocop/rspec/shared_examples.rb +0 -100
  850. data/lib/rubocop/string_util.rb +0 -156
  851. data/lib/rubocop/token.rb +0 -25
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # These aliases are for compatibility.
4
+ module RuboCop
5
+ NodePattern = AST::NodePattern
6
+ ProcessedSource = AST::ProcessedSource
7
+ Token = AST::Token
8
+ end
@@ -4,6 +4,7 @@ require 'json'
4
4
 
5
5
  module RuboCop
6
6
  # Converts RuboCop objects to and from the serialization format JSON.
7
+ # @api private
7
8
  class CachedData
8
9
  def initialize(filename)
9
10
  @filename = filename
@@ -20,6 +21,7 @@ module RuboCop
20
21
  private
21
22
 
22
23
  def serialize_offense(offense)
24
+ status = :uncorrected if %i[corrected corrected_with_todo].include?(offense.status)
23
25
  {
24
26
  # Calling #to_s here ensures that the serialization works when using
25
27
  # other json serializers such as Oj. Some of these gems do not call
@@ -31,19 +33,14 @@ module RuboCop
31
33
  },
32
34
  message: message(offense),
33
35
  cop_name: offense.cop_name,
34
- status: offense.status
36
+ status: status || offense.status
35
37
  }
36
38
  end
37
39
 
38
40
  def message(offense)
39
41
  # JSON.dump will fail if the offense message contains text which is not
40
42
  # valid UTF-8
41
- message = offense.message
42
- if message.respond_to?(:scrub)
43
- message.scrub
44
- else
45
- message.chars.select(&:valid_encoding?).join
46
- end
43
+ offense.message.dup.force_encoding(::Encoding::UTF_8).scrub
47
44
  end
48
45
 
49
46
  # Restore an offense object loaded from a JSON file.
@@ -54,9 +51,7 @@ module RuboCop
54
51
  location = Parser::Source::Range.new(source_buffer,
55
52
  o['location']['begin_pos'],
56
53
  o['location']['end_pos'])
57
- Cop::Offense.new(o['severity'], location,
58
- o['message'],
59
- o['cop_name'], o['status'].to_sym)
54
+ Cop::Offense.new(o['severity'], location, o['message'], o['cop_name'], o['status'].to_sym)
60
55
  end
61
56
  end
62
57
  end
data/lib/rubocop/cli.rb CHANGED
@@ -4,7 +4,10 @@ module RuboCop
4
4
  # The CLI is a class responsible of handling all the command line interface
5
5
  # logic.
6
6
  class CLI
7
- include Formatter::TextUtil
7
+ STATUS_SUCCESS = 0
8
+ STATUS_OFFENSES = 1
9
+ STATUS_ERROR = 2
10
+ STATUS_INTERRUPTED = 128 + Signal.list['INT']
8
11
 
9
12
  class Finished < RuntimeError; end
10
13
 
@@ -15,47 +18,80 @@ module RuboCop
15
18
  @config_store = ConfigStore.new
16
19
  end
17
20
 
21
+ # @api public
22
+ #
18
23
  # Entry point for the application logic. Here we
19
24
  # do the command line arguments processing and inspect
20
- # the target files
25
+ # the target files.
26
+ #
27
+ # @param args [Array<String>] command line arguments
21
28
  # @return [Integer] UNIX exit code
29
+ #
30
+ # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
22
31
  def run(args = ARGV)
23
32
  @options, paths = Options.new.parse(args)
24
- act_on_options
25
- apply_default_formatter
26
-
27
- execute_runner(paths)
33
+ @env = Environment.new(@options, @config_store, paths)
34
+
35
+ if @options[:init]
36
+ run_command(:init)
37
+ else
38
+ act_on_options
39
+ validate_options_vs_config
40
+ apply_default_formatter
41
+ execute_runners
42
+ end
43
+ rescue ConfigNotFoundError, IncorrectCopNameError, OptionArgumentError => e
44
+ warn e.message
45
+ STATUS_ERROR
28
46
  rescue RuboCop::Error => e
29
- $stderr.puts Rainbow("Error: #{e.message}").red
30
- return 2
47
+ warn Rainbow("Error: #{e.message}").red
48
+ STATUS_ERROR
31
49
  rescue Finished
32
- return 0
33
- rescue StandardError, SyntaxError => e
34
- $stderr.puts e.message
35
- $stderr.puts e.backtrace
36
- return 2
50
+ STATUS_SUCCESS
51
+ rescue OptionParser::InvalidOption => e
52
+ warn e.message
53
+ warn 'For usage information, use --help'
54
+ STATUS_ERROR
55
+ rescue StandardError, SyntaxError, LoadError => e
56
+ warn e.message
57
+ warn e.backtrace
58
+ STATUS_ERROR
59
+ end
60
+ # rubocop:enable Metrics/MethodLength, Metrics/AbcSize
61
+
62
+ private
63
+
64
+ def run_command(name)
65
+ @env.run(name)
37
66
  end
38
67
 
39
- def trap_interrupt(runner)
40
- Signal.trap('INT') do
41
- exit!(1) if runner.aborting?
42
- runner.abort
43
- $stderr.puts
44
- $stderr.puts 'Exiting... Interrupt again to exit immediately.'
68
+ def execute_runners
69
+ if @options[:auto_gen_config]
70
+ run_command(:auto_gen_config)
71
+ else
72
+ run_command(:execute_runner).tap { suggest_extensions }
45
73
  end
46
74
  end
47
75
 
48
- private
76
+ def suggest_extensions
77
+ run_command(:suggest_extensions)
78
+ end
49
79
 
50
- def act_on_options
51
- handle_exiting_options
80
+ def validate_options_vs_config
81
+ return unless @options[:parallel] && !@config_store.for_pwd.for_all_cops['UseCache']
52
82
 
53
- ConfigLoader.debug = @options[:debug]
54
- ConfigLoader.auto_gen_config = @options[:auto_gen_config]
83
+ raise OptionArgumentError, '-P/--parallel uses caching to speed up execution, so combining ' \
84
+ 'with AllCops: UseCache: false is not allowed.'
85
+ end
86
+
87
+ def act_on_options
88
+ set_options_to_config_loader
55
89
 
56
90
  @config_store.options_config = @options[:config] if @options[:config]
57
91
  @config_store.force_default_config! if @options[:force_default_config]
58
92
 
93
+ handle_exiting_options
94
+
59
95
  if @options[:color]
60
96
  # color output explicitly forced on
61
97
  Rainbow.enabled = true
@@ -65,24 +101,18 @@ module RuboCop
65
101
  end
66
102
  end
67
103
 
68
- def execute_runner(paths)
69
- runner = Runner.new(@options, @config_store)
70
-
71
- trap_interrupt(runner)
72
- all_passed = runner.run(paths)
73
- display_warning_summary(runner.warnings)
74
- display_error_summary(runner.errors)
75
- maybe_print_corrected_source
76
-
77
- all_passed && !runner.aborting? && runner.errors.empty? ? 0 : 1
104
+ def set_options_to_config_loader
105
+ ConfigLoader.debug = @options[:debug]
106
+ ConfigLoader.disable_pending_cops = @options[:disable_pending_cops]
107
+ ConfigLoader.enable_pending_cops = @options[:enable_pending_cops]
108
+ ConfigLoader.ignore_parent_exclusion = @options[:ignore_parent_exclusion]
78
109
  end
79
110
 
80
111
  def handle_exiting_options
81
112
  return unless Options::EXITING_OPTIONS.any? { |o| @options.key? o }
82
113
 
83
- puts RuboCop::Version.version(false) if @options[:version]
84
- puts RuboCop::Version.version(true) if @options[:verbose_version]
85
- print_available_cops if @options[:show_cops]
114
+ run_command(:version) if @options[:version] || @options[:verbose_version]
115
+ run_command(:show_cops) if @options[:show_cops]
86
116
  raise Finished
87
117
  end
88
118
 
@@ -90,100 +120,14 @@ module RuboCop
90
120
  # This must be done after the options have already been processed,
91
121
  # because they can affect how ConfigStore behaves
92
122
  @options[:formatters] ||= begin
93
- cfg = @config_store.for(Dir.pwd).for_all_cops
94
- formatter = cfg['DefaultFormatter'] || 'progress'
123
+ if @options[:auto_gen_config]
124
+ formatter = 'autogenconf'
125
+ else
126
+ cfg = @config_store.for_pwd.for_all_cops
127
+ formatter = cfg['DefaultFormatter'] || 'progress'
128
+ end
95
129
  [[formatter, @options[:output_path]]]
96
130
  end
97
-
98
- return unless @options[:auto_gen_config]
99
-
100
- @options[:formatters] << [Formatter::DisabledConfigFormatter,
101
- ConfigLoader::AUTO_GENERATED_FILE]
102
- end
103
-
104
- def print_available_cops
105
- # Load the configs so the require()s are done for custom cops
106
- @config_store.for(Dir.pwd)
107
- registry = Cop::Cop.registry
108
- show_all = @options[:show_cops].empty?
109
-
110
- if show_all
111
- puts "# Available cops (#{registry.length}) + config for #{Dir.pwd}: "
112
- end
113
-
114
- registry.departments.sort!.each do |department|
115
- print_cops_of_department(registry, department, show_all)
116
- end
117
- end
118
-
119
- def print_cops_of_department(registry, department, show_all)
120
- selected_cops = if show_all
121
- cops_of_department(registry, department)
122
- else
123
- selected_cops_of_department(registry, department)
124
- end
125
-
126
- puts "# Department '#{department}' (#{selected_cops.length}):" if show_all
127
-
128
- print_cop_details(selected_cops)
129
- end
130
-
131
- def print_cop_details(cops)
132
- cops.each do |cop|
133
- puts '# Supports --auto-correct' if cop.new.support_autocorrect?
134
- puts "#{cop.cop_name}:"
135
- puts config_lines(cop)
136
- puts
137
- end
138
- end
139
-
140
- def selected_cops_of_department(cops, department)
141
- cops_of_department(cops, department).select do |cop|
142
- @options[:show_cops].include?(cop.cop_name)
143
- end
144
- end
145
-
146
- def cops_of_department(cops, department)
147
- cops.with_department(department).sort!
148
- end
149
-
150
- def config_lines(cop)
151
- cnf = @config_store.for(Dir.pwd).for_cop(cop)
152
- cnf.to_yaml.lines.to_a.butfirst.map { |line| ' ' + line }
153
- end
154
-
155
- def display_warning_summary(warnings)
156
- return if warnings.empty?
157
-
158
- warn Rainbow("\n#{pluralize(warnings.size, 'warning')}:").yellow
159
-
160
- warnings.each { |warning| warn warning }
161
- end
162
-
163
- def display_error_summary(errors)
164
- return if errors.empty?
165
-
166
- warn Rainbow("\n#{pluralize(errors.size, 'error')} occurred:").red
167
-
168
- errors.each { |error| warn error }
169
-
170
- warn <<-END.strip_indent
171
- Errors are usually caused by RuboCop bugs.
172
- Please, report your problems to RuboCop's issue tracker.
173
- Mention the following information in the issue report:
174
- #{RuboCop::Version.version(true)}
175
- END
176
- end
177
-
178
- def maybe_print_corrected_source
179
- # If we are asked to autocorrect source code read from stdin, the only
180
- # reasonable place to write it is to stdout
181
- # Unfortunately, we also write other information to stdout
182
- # So a delimiter is needed for tools to easily identify where the
183
- # autocorrected source begins
184
- return unless @options[:stdin] && @options[:auto_correct]
185
- puts '=' * 20
186
- print @options[:stdin]
187
131
  end
188
132
  end
189
133
  end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ # Home of subcommands in the CLI.
6
+ # @api private
7
+ module Command
8
+ class << self
9
+ # Find the command with a given name and run it in an environment.
10
+ def run(env, name)
11
+ class_for(name).new(env).run
12
+ end
13
+
14
+ private
15
+
16
+ def class_for(name)
17
+ Base.by_command_name(name)
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,132 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # Generate a configuration file acting as a TODO list.
7
+ # @api private
8
+ class AutoGenerateConfig < Base
9
+ self.command_name = :auto_gen_config
10
+
11
+ AUTO_GENERATED_FILE = '.rubocop_todo.yml'
12
+ YAML_OPTIONAL_DOC_START = /\A---(\s+#|\s*\z)/.freeze
13
+
14
+ PHASE_1 = 'Phase 1 of 2: run Layout/LineLength cop'
15
+ PHASE_2 = 'Phase 2 of 2: run all cops'
16
+
17
+ PHASE_1_OVERRIDDEN = '(skipped because the default Layout/LineLength:Max is overridden)'
18
+ PHASE_1_DISABLED = '(skipped because Layout/LineLength is disabled)'
19
+
20
+ def run
21
+ add_formatter
22
+ reset_config_and_auto_gen_file
23
+ line_length_contents = maybe_run_line_length_cop
24
+ run_all_cops(line_length_contents)
25
+ end
26
+
27
+ private
28
+
29
+ def maybe_run_line_length_cop
30
+ if !line_length_enabled?(@config_store.for_pwd)
31
+ skip_line_length_cop(PHASE_1_DISABLED)
32
+ elsif !same_max_line_length?(@config_store.for_pwd, ConfigLoader.default_configuration)
33
+ skip_line_length_cop(PHASE_1_OVERRIDDEN)
34
+ else
35
+ run_line_length_cop
36
+ end
37
+ end
38
+
39
+ def skip_line_length_cop(reason)
40
+ puts Rainbow("#{PHASE_1} #{reason}").yellow
41
+ ''
42
+ end
43
+
44
+ def line_length_enabled?(config)
45
+ line_length_cop(config)['Enabled']
46
+ end
47
+
48
+ def same_max_line_length?(config1, config2)
49
+ max_line_length(config1) == max_line_length(config2)
50
+ end
51
+
52
+ def max_line_length(config)
53
+ line_length_cop(config)['Max']
54
+ end
55
+
56
+ def line_length_cop(config)
57
+ config.for_cop('Layout/LineLength')
58
+ end
59
+
60
+ # Do an initial run with only Layout/LineLength so that cops that
61
+ # depend on Layout/LineLength:Max get the correct value for that
62
+ # parameter.
63
+ def run_line_length_cop
64
+ puts Rainbow(PHASE_1).yellow
65
+ @options[:only] = ['Layout/LineLength']
66
+ execute_runner
67
+ @options.delete(:only)
68
+ @config_store = ConfigStore.new
69
+ # Save the todo configuration of the LineLength cop.
70
+ File.read(AUTO_GENERATED_FILE).lines.drop_while { |line| line.start_with?('#') }.join
71
+ end
72
+
73
+ def run_all_cops(line_length_contents)
74
+ puts Rainbow(PHASE_2).yellow
75
+ result = execute_runner
76
+ # This run was made with the current maximum length allowed, so append
77
+ # the saved setting for LineLength.
78
+ File.open(AUTO_GENERATED_FILE, 'a') { |f| f.write(line_length_contents) }
79
+ result
80
+ end
81
+
82
+ def reset_config_and_auto_gen_file
83
+ @config_store = ConfigStore.new
84
+ @config_store.options_config = @options[:config] if @options[:config]
85
+ File.open(AUTO_GENERATED_FILE, 'w') {} # create or truncate if exists
86
+ add_inheritance_from_auto_generated_file(@options[:config])
87
+ end
88
+
89
+ def add_formatter
90
+ @options[:formatters] << [Formatter::DisabledConfigFormatter, AUTO_GENERATED_FILE]
91
+ end
92
+
93
+ def execute_runner
94
+ Environment.new(@options, @config_store, @paths).run(:execute_runner)
95
+ end
96
+
97
+ def add_inheritance_from_auto_generated_file(config_file)
98
+ file_string = " #{AUTO_GENERATED_FILE}"
99
+
100
+ config_file ||= ConfigLoader::DOTFILE
101
+
102
+ if File.exist?(config_file)
103
+ files = Array(ConfigLoader.load_yaml_configuration(config_file)['inherit_from'])
104
+
105
+ return if files.include?(AUTO_GENERATED_FILE)
106
+
107
+ files.unshift(AUTO_GENERATED_FILE)
108
+ file_string = "\n - #{files.join("\n - ")}" if files.size > 1
109
+ rubocop_yml_contents = existing_configuration(config_file)
110
+ end
111
+
112
+ write_config_file(config_file, file_string, rubocop_yml_contents)
113
+
114
+ puts "Added inheritance from `#{AUTO_GENERATED_FILE}` in `#{ConfigLoader::DOTFILE}`."
115
+ end
116
+
117
+ def existing_configuration(config_file)
118
+ File.read(config_file, encoding: Encoding::UTF_8)
119
+ .sub(/^inherit_from: *[^\n]+/, '')
120
+ .sub(/^inherit_from: *(\n *- *[^\n]+)+/, '')
121
+ end
122
+
123
+ def write_config_file(file_name, file_string, rubocop_yml_contents)
124
+ lines = /\S/.match?(rubocop_yml_contents) ? rubocop_yml_contents.split("\n", -1) : []
125
+ doc_start_index = lines.index { |line| YAML_OPTIONAL_DOC_START.match?(line) } || -1
126
+ lines.insert(doc_start_index + 1, "inherit_from:#{file_string}\n")
127
+ File.open(file_name, 'w') { |f| f.write lines.join("\n") }
128
+ end
129
+ end
130
+ end
131
+ end
132
+ end