rubocop 0.70.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (751) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +64 -40
  4. data/config/default.yml +1316 -986
  5. data/config/obsoletion.yml +196 -0
  6. data/exe/rubocop +1 -1
  7. data/lib/rubocop/ast_aliases.rb +8 -0
  8. data/lib/rubocop/cached_data.rb +4 -2
  9. data/lib/rubocop/cli/command/auto_genenerate_config.rb +141 -0
  10. data/lib/rubocop/cli/command/base.rb +35 -0
  11. data/lib/rubocop/cli/command/execute_runner.rb +100 -0
  12. data/lib/rubocop/cli/command/init_dotfile.rb +46 -0
  13. data/lib/rubocop/cli/command/show_cops.rb +77 -0
  14. data/lib/rubocop/cli/command/suggest_extensions.rb +80 -0
  15. data/lib/rubocop/cli/command/version.rb +18 -0
  16. data/lib/rubocop/cli/command.rb +22 -0
  17. data/lib/rubocop/cli/environment.rb +22 -0
  18. data/lib/rubocop/cli.rb +22 -230
  19. data/lib/rubocop/comment_config.rb +29 -16
  20. data/lib/rubocop/config.rb +80 -509
  21. data/lib/rubocop/config_loader.rb +122 -91
  22. data/lib/rubocop/config_loader_resolver.rb +65 -24
  23. data/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
  24. data/lib/rubocop/config_obsoletion/changed_parameter.rb +21 -0
  25. data/lib/rubocop/config_obsoletion/cop_rule.rb +34 -0
  26. data/lib/rubocop/config_obsoletion/extracted_cop.rb +44 -0
  27. data/lib/rubocop/config_obsoletion/parameter_rule.rb +44 -0
  28. data/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
  29. data/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
  30. data/lib/rubocop/config_obsoletion/rule.rb +41 -0
  31. data/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
  32. data/lib/rubocop/config_obsoletion.rb +101 -0
  33. data/lib/rubocop/config_regeneration.rb +33 -0
  34. data/lib/rubocop/config_store.rb +19 -5
  35. data/lib/rubocop/config_validator.rb +239 -0
  36. data/lib/rubocop/cop/autocorrect_logic.rb +83 -6
  37. data/lib/rubocop/cop/badge.rb +15 -30
  38. data/lib/rubocop/cop/base.rb +447 -0
  39. data/lib/rubocop/cop/bundler/duplicated_gem.rb +28 -4
  40. data/lib/rubocop/cop/bundler/gem_comment.rb +83 -9
  41. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +15 -23
  42. data/lib/rubocop/cop/bundler/ordered_gems.rb +1 -1
  43. data/lib/rubocop/cop/commissioner.rb +102 -70
  44. data/lib/rubocop/cop/cop.rb +102 -186
  45. data/lib/rubocop/cop/corrector.rb +71 -122
  46. data/lib/rubocop/cop/correctors/alignment_corrector.rb +45 -23
  47. data/lib/rubocop/cop/correctors/condition_corrector.rb +3 -6
  48. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +9 -10
  49. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +4 -4
  50. data/lib/rubocop/cop/correctors/line_break_corrector.rb +10 -10
  51. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +36 -5
  52. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +5 -8
  53. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +9 -14
  54. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +8 -10
  55. data/lib/rubocop/cop/correctors/space_corrector.rb +2 -5
  56. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +6 -8
  57. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +15 -18
  58. data/lib/rubocop/cop/documentation.rb +22 -0
  59. data/lib/rubocop/cop/force.rb +2 -1
  60. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +5 -5
  61. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +3 -5
  62. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +45 -20
  63. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  64. data/lib/rubocop/cop/generator/configuration_injector.rb +12 -7
  65. data/lib/rubocop/cop/generator/require_file_injector.rb +1 -1
  66. data/lib/rubocop/cop/generator.rb +15 -21
  67. data/lib/rubocop/cop/ignored_node.rb +1 -3
  68. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +52 -0
  69. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +3 -3
  70. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +13 -15
  71. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +11 -10
  72. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +12 -8
  73. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +10 -10
  74. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +5 -5
  75. data/lib/rubocop/cop/internal_affairs.rb +1 -0
  76. data/lib/rubocop/cop/layout/{align_arguments.rb → argument_alignment.rb} +1 -1
  77. data/lib/rubocop/cop/layout/array_alignment.rb +83 -0
  78. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +11 -2
  79. data/lib/rubocop/cop/layout/begin_end_alignment.rb +77 -0
  80. data/lib/rubocop/cop/layout/block_alignment.rb +30 -27
  81. data/lib/rubocop/cop/layout/block_end_newline.rb +5 -3
  82. data/lib/rubocop/cop/layout/case_indentation.rb +21 -25
  83. data/lib/rubocop/cop/layout/class_structure.rb +53 -69
  84. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +4 -6
  85. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +1 -1
  86. data/lib/rubocop/cop/layout/comment_indentation.rb +14 -17
  87. data/lib/rubocop/cop/layout/condition_position.rb +16 -8
  88. data/lib/rubocop/cop/layout/def_end_alignment.rb +7 -4
  89. data/lib/rubocop/cop/layout/dot_position.rb +21 -20
  90. data/lib/rubocop/cop/layout/else_alignment.rb +23 -2
  91. data/lib/rubocop/cop/layout/empty_comment.rb +38 -40
  92. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +43 -25
  93. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +15 -15
  94. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  95. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +100 -31
  96. data/lib/rubocop/cop/layout/empty_lines.rb +6 -9
  97. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +21 -20
  98. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +13 -9
  99. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  100. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +2 -5
  101. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +4 -5
  102. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +4 -7
  103. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +3 -7
  104. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +2 -5
  105. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +2 -5
  106. data/lib/rubocop/cop/layout/end_alignment.rb +17 -22
  107. data/lib/rubocop/cop/layout/end_of_line.rb +16 -11
  108. data/lib/rubocop/cop/layout/extra_spacing.rb +34 -94
  109. data/lib/rubocop/cop/layout/{indent_first_argument.rb → first_argument_indentation.rb} +28 -15
  110. data/lib/rubocop/cop/layout/{indent_first_array_element.rb → first_array_element_indentation.rb} +18 -14
  111. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +3 -6
  112. data/lib/rubocop/cop/layout/{indent_first_hash_element.rb → first_hash_element_indentation.rb} +5 -5
  113. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +2 -5
  114. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +5 -11
  115. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +2 -5
  116. data/lib/rubocop/cop/layout/{indent_first_parameter.rb → first_parameter_indentation.rb} +8 -4
  117. data/lib/rubocop/cop/layout/{align_hash.rb → hash_alignment.rb} +41 -37
  118. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +30 -17
  119. data/lib/rubocop/cop/layout/heredoc_indentation.rb +176 -0
  120. data/lib/rubocop/cop/layout/indentation_consistency.rb +13 -12
  121. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  122. data/lib/rubocop/cop/layout/indentation_width.rb +29 -13
  123. data/lib/rubocop/cop/layout/initial_indentation.rb +6 -7
  124. data/lib/rubocop/cop/layout/leading_comment_space.rb +72 -11
  125. data/lib/rubocop/cop/layout/{leading_blank_lines.rb → leading_empty_lines.rb} +6 -11
  126. data/lib/rubocop/cop/{metrics → layout}/line_length.rb +92 -130
  127. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +2 -5
  128. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +2 -5
  129. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +11 -15
  130. data/lib/rubocop/cop/layout/multiline_block_layout.rb +70 -27
  131. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +2 -9
  132. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +2 -5
  133. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +7 -11
  134. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +2 -5
  135. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +8 -4
  136. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +2 -5
  137. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +13 -4
  138. data/lib/rubocop/cop/layout/{align_parameters.rb → parameter_alignment.rb} +1 -1
  139. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +59 -26
  140. data/lib/rubocop/cop/layout/space_after_colon.rb +12 -8
  141. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  142. data/lib/rubocop/cop/layout/space_after_method_name.rb +5 -6
  143. data/lib/rubocop/cop/layout/space_after_not.rb +9 -11
  144. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  145. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +47 -42
  146. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +17 -21
  147. data/lib/rubocop/cop/layout/space_around_keyword.rb +31 -20
  148. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  149. data/lib/rubocop/cop/layout/space_around_operators.rb +127 -44
  150. data/lib/rubocop/cop/layout/space_before_block_braces.rb +54 -22
  151. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  152. data/lib/rubocop/cop/layout/space_before_comment.rb +9 -8
  153. data/lib/rubocop/cop/layout/space_before_first_arg.rb +15 -7
  154. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  155. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +17 -23
  156. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +32 -33
  157. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +3 -8
  158. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +37 -21
  159. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +21 -46
  160. data/lib/rubocop/cop/layout/space_inside_parens.rb +43 -26
  161. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +5 -10
  162. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +9 -18
  163. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +17 -27
  164. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +24 -41
  165. data/lib/rubocop/cop/layout/{trailing_blank_lines.rb → trailing_empty_lines.rb} +10 -15
  166. data/lib/rubocop/cop/layout/trailing_whitespace.rb +56 -16
  167. data/lib/rubocop/cop/legacy/corrections_proxy.rb +49 -0
  168. data/lib/rubocop/cop/legacy/corrector.rb +29 -0
  169. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +9 -4
  170. data/lib/rubocop/cop/lint/ambiguous_operator.rb +53 -5
  171. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +36 -6
  172. data/lib/rubocop/cop/lint/assignment_in_condition.rb +19 -6
  173. data/lib/rubocop/cop/lint/big_decimal_new.rb +10 -11
  174. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +50 -0
  175. data/lib/rubocop/cop/lint/boolean_symbol.rb +22 -2
  176. data/lib/rubocop/cop/lint/circular_argument_reference.rb +1 -1
  177. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +98 -0
  178. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  179. data/lib/rubocop/cop/lint/debugger.rb +18 -26
  180. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +7 -10
  181. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +141 -0
  182. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +9 -3
  183. data/lib/rubocop/cop/lint/duplicate_branch.rb +93 -0
  184. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +3 -13
  185. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  186. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +1 -1
  187. data/lib/rubocop/cop/lint/duplicate_methods.rb +10 -13
  188. data/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +77 -0
  189. data/lib/rubocop/cop/lint/duplicate_require.rb +46 -0
  190. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  191. data/lib/rubocop/cop/lint/each_with_object_argument.rb +4 -3
  192. data/lib/rubocop/cop/lint/else_layout.rb +30 -4
  193. data/lib/rubocop/cop/lint/empty_block.rb +82 -0
  194. data/lib/rubocop/cop/lint/empty_class.rb +93 -0
  195. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  196. data/lib/rubocop/cop/lint/empty_ensure.rb +5 -5
  197. data/lib/rubocop/cop/lint/empty_expression.rb +2 -2
  198. data/lib/rubocop/cop/lint/empty_file.rb +50 -0
  199. data/lib/rubocop/cop/lint/empty_interpolation.rb +8 -9
  200. data/lib/rubocop/cop/lint/empty_when.rb +31 -8
  201. data/lib/rubocop/cop/lint/ensure_return.rb +29 -14
  202. data/lib/rubocop/cop/lint/erb_new_arguments.rb +66 -8
  203. data/lib/rubocop/cop/lint/flip_flop.rb +9 -3
  204. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  205. data/lib/rubocop/cop/lint/float_out_of_range.rb +2 -2
  206. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +52 -41
  207. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +37 -0
  208. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +13 -14
  209. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  210. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +6 -5
  211. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +12 -15
  212. data/lib/rubocop/cop/lint/inherit_exception.rb +13 -8
  213. data/lib/rubocop/cop/lint/interpolation_check.rb +26 -5
  214. data/lib/rubocop/cop/lint/literal_as_condition.rb +24 -15
  215. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +46 -15
  216. data/lib/rubocop/cop/lint/loop.rb +30 -7
  217. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +8 -7
  218. data/lib/rubocop/cop/lint/missing_super.rb +102 -0
  219. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  220. data/lib/rubocop/cop/lint/{multiple_compare.rb → multiple_comparison.rb} +11 -12
  221. data/lib/rubocop/cop/lint/nested_method_definition.rb +20 -26
  222. data/lib/rubocop/cop/lint/nested_percent_literal.rb +16 -2
  223. data/lib/rubocop/cop/lint/next_without_accumulator.rb +2 -2
  224. data/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
  225. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +160 -0
  226. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +10 -10
  227. data/lib/rubocop/cop/lint/number_conversion.rb +54 -23
  228. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +11 -13
  229. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +98 -0
  230. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +33 -12
  231. data/lib/rubocop/cop/lint/percent_string_array.rb +6 -11
  232. data/lib/rubocop/cop/lint/percent_symbol_array.rb +14 -13
  233. data/lib/rubocop/cop/lint/raise_exception.rb +86 -0
  234. data/lib/rubocop/cop/lint/rand_one.rb +4 -3
  235. data/lib/rubocop/cop/lint/{unneeded_cop_disable_directive.rb → redundant_cop_disable_directive.rb} +84 -76
  236. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +128 -0
  237. data/lib/rubocop/cop/lint/{unneeded_require_statement.rb → redundant_require_statement.rb} +9 -11
  238. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +78 -0
  239. data/lib/rubocop/cop/lint/{unneeded_splat_expansion.rb → redundant_splat_expansion.rb} +25 -16
  240. data/lib/rubocop/cop/lint/{string_conversion_in_interpolation.rb → redundant_string_coercion.rb} +11 -18
  241. data/lib/rubocop/cop/lint/redundant_with_index.rb +13 -16
  242. data/lib/rubocop/cop/lint/redundant_with_object.rb +13 -16
  243. data/lib/rubocop/cop/lint/regexp_as_condition.rb +6 -2
  244. data/lib/rubocop/cop/lint/require_parentheses.rb +2 -2
  245. data/lib/rubocop/cop/lint/rescue_exception.rb +2 -2
  246. data/lib/rubocop/cop/lint/rescue_type.rb +8 -9
  247. data/lib/rubocop/cop/lint/return_in_void_context.rb +2 -4
  248. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +11 -15
  249. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +14 -10
  250. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +11 -3
  251. data/lib/rubocop/cop/lint/script_permission.rb +10 -7
  252. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  253. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +87 -0
  254. data/lib/rubocop/cop/lint/shadowed_argument.rb +3 -3
  255. data/lib/rubocop/cop/lint/shadowed_exception.rb +12 -13
  256. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +20 -7
  257. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  258. data/lib/rubocop/cop/lint/{handle_exceptions.rb → suppressed_exception.rb} +21 -27
  259. data/lib/rubocop/cop/lint/syntax.rb +11 -28
  260. data/lib/rubocop/cop/lint/to_enum_arguments.rb +86 -0
  261. data/lib/rubocop/cop/lint/to_json.rb +21 -12
  262. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  263. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +57 -0
  264. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +4 -4
  265. data/lib/rubocop/cop/lint/unexpected_block_arity.rb +85 -0
  266. data/lib/rubocop/cop/lint/unified_integer.rb +5 -9
  267. data/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +199 -0
  268. data/lib/rubocop/cop/lint/unreachable_code.rb +3 -3
  269. data/lib/rubocop/cop/lint/unreachable_loop.rb +171 -0
  270. data/lib/rubocop/cop/lint/unused_block_argument.rb +30 -9
  271. data/lib/rubocop/cop/lint/unused_method_argument.rb +63 -14
  272. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +5 -3
  273. data/lib/rubocop/cop/lint/uri_regexp.rb +12 -47
  274. data/lib/rubocop/cop/lint/useless_access_modifier.rb +95 -47
  275. data/lib/rubocop/cop/lint/useless_assignment.rb +7 -6
  276. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +7 -11
  277. data/lib/rubocop/cop/lint/useless_method_definition.rb +68 -0
  278. data/lib/rubocop/cop/lint/useless_setter_call.rb +15 -8
  279. data/lib/rubocop/cop/lint/useless_times.rb +106 -0
  280. data/lib/rubocop/cop/lint/void.rb +10 -33
  281. data/lib/rubocop/cop/message_annotator.rb +16 -7
  282. data/lib/rubocop/cop/metrics/abc_size.rb +27 -3
  283. data/lib/rubocop/cop/metrics/block_length.rb +40 -10
  284. data/lib/rubocop/cop/metrics/block_nesting.rb +2 -2
  285. data/lib/rubocop/cop/metrics/class_length.rb +39 -8
  286. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +37 -4
  287. data/lib/rubocop/cop/metrics/method_length.rb +33 -5
  288. data/lib/rubocop/cop/metrics/module_length.rb +27 -4
  289. data/lib/rubocop/cop/metrics/parameter_lists.rb +71 -9
  290. data/lib/rubocop/cop/metrics/perceived_complexity.rb +7 -8
  291. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +95 -14
  292. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +158 -0
  293. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  294. data/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +146 -0
  295. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
  296. data/lib/rubocop/cop/migration/department_name.rb +83 -0
  297. data/lib/rubocop/cop/mixin/alignment.rb +8 -6
  298. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  299. data/lib/rubocop/cop/mixin/annotation_comment.rb +5 -0
  300. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  301. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  302. data/lib/rubocop/cop/mixin/check_line_breakable.rb +20 -17
  303. data/lib/rubocop/cop/mixin/code_length.rb +26 -5
  304. data/lib/rubocop/cop/mixin/comments_help.rb +48 -0
  305. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +5 -3
  306. data/lib/rubocop/cop/mixin/configurable_formatting.rb +3 -5
  307. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  308. data/lib/rubocop/cop/mixin/configurable_numbering.rb +4 -3
  309. data/lib/rubocop/cop/mixin/def_node.rb +1 -1
  310. data/lib/rubocop/cop/mixin/documentation_comment.rb +2 -4
  311. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +8 -7
  312. data/lib/rubocop/cop/mixin/empty_parameter.rb +4 -2
  313. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +18 -2
  314. data/lib/rubocop/cop/mixin/enforce_superclass.rb +15 -5
  315. data/lib/rubocop/cop/mixin/first_element_line_break.rb +4 -2
  316. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +15 -6
  317. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +5 -1
  318. data/lib/rubocop/cop/mixin/hash_transform_method.rb +197 -0
  319. data/lib/rubocop/cop/mixin/ignored_methods.rb +36 -3
  320. data/lib/rubocop/cop/mixin/ignored_pattern.rb +1 -1
  321. data/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  322. data/lib/rubocop/cop/mixin/line_length_help.rb +87 -0
  323. data/lib/rubocop/cop/mixin/method_complexity.rb +24 -4
  324. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +3 -1
  325. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +5 -5
  326. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +13 -12
  327. data/lib/rubocop/cop/mixin/negative_conditional.rb +2 -2
  328. data/lib/rubocop/cop/mixin/nil_methods.rb +4 -6
  329. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +6 -1
  330. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  331. data/lib/rubocop/cop/mixin/percent_array.rb +16 -9
  332. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +88 -1
  333. data/lib/rubocop/cop/mixin/range_help.rb +19 -5
  334. data/lib/rubocop/cop/mixin/rational_literal.rb +18 -0
  335. data/lib/rubocop/cop/mixin/rescue_node.rb +11 -1
  336. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +4 -3
  337. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +4 -3
  338. data/lib/rubocop/cop/mixin/statement_modifier.rb +51 -23
  339. data/lib/rubocop/cop/mixin/string_help.rb +4 -1
  340. data/lib/rubocop/cop/mixin/string_literals_help.rb +1 -1
  341. data/lib/rubocop/cop/mixin/surrounding_space.rb +19 -33
  342. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  343. data/lib/rubocop/cop/mixin/trailing_comma.rb +27 -33
  344. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +13 -18
  345. data/lib/rubocop/cop/mixin/unused_argument.rb +4 -6
  346. data/lib/rubocop/cop/mixin/visibility_help.rb +36 -0
  347. data/lib/rubocop/cop/naming/accessor_method_name.rb +19 -3
  348. data/lib/rubocop/cop/naming/ascii_identifiers.rb +29 -6
  349. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +16 -6
  350. data/lib/rubocop/cop/naming/{uncommunicative_block_param_name.rb → block_parameter_name.rb} +3 -3
  351. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +13 -3
  352. data/lib/rubocop/cop/naming/constant_name.rb +5 -4
  353. data/lib/rubocop/cop/naming/file_name.rb +40 -22
  354. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +12 -6
  355. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +8 -8
  356. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +69 -20
  357. data/lib/rubocop/cop/naming/method_name.rb +39 -2
  358. data/lib/rubocop/cop/naming/{uncommunicative_method_param_name.rb → method_parameter_name.rb} +3 -3
  359. data/lib/rubocop/cop/naming/predicate_name.rb +12 -15
  360. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +27 -28
  361. data/lib/rubocop/cop/naming/variable_name.rb +2 -1
  362. data/lib/rubocop/cop/naming/variable_number.rb +101 -9
  363. data/lib/rubocop/cop/offense.rb +62 -12
  364. data/lib/rubocop/cop/registry.rb +97 -11
  365. data/lib/rubocop/cop/security/eval.rb +4 -3
  366. data/lib/rubocop/cop/security/json_load.rb +8 -9
  367. data/lib/rubocop/cop/security/marshal_load.rb +4 -5
  368. data/lib/rubocop/cop/security/open.rb +15 -12
  369. data/lib/rubocop/cop/security/yaml_load.rb +8 -7
  370. data/lib/rubocop/cop/severity.rb +1 -11
  371. data/lib/rubocop/cop/style/access_modifier_declarations.rb +36 -12
  372. data/lib/rubocop/cop/style/accessor_grouping.rb +152 -0
  373. data/lib/rubocop/cop/style/alias.rb +45 -38
  374. data/lib/rubocop/cop/style/and_or.rb +27 -22
  375. data/lib/rubocop/cop/style/arguments_forwarding.rb +142 -0
  376. data/lib/rubocop/cop/style/array_coercion.rb +67 -0
  377. data/lib/rubocop/cop/style/array_join.rb +8 -9
  378. data/lib/rubocop/cop/style/ascii_comments.rb +4 -4
  379. data/lib/rubocop/cop/style/attr.rb +22 -13
  380. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +7 -7
  381. data/lib/rubocop/cop/style/bare_percent_literals.rb +12 -14
  382. data/lib/rubocop/cop/style/begin_block.rb +2 -2
  383. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +137 -0
  384. data/lib/rubocop/cop/style/block_comments.rb +14 -18
  385. data/lib/rubocop/cop/style/block_delimiters.rb +79 -27
  386. data/lib/rubocop/cop/style/case_equality.rb +54 -4
  387. data/lib/rubocop/cop/style/case_like_if.rb +248 -0
  388. data/lib/rubocop/cop/style/character_literal.rb +10 -11
  389. data/lib/rubocop/cop/style/class_and_module_children.rb +26 -16
  390. data/lib/rubocop/cop/style/class_check.rb +6 -11
  391. data/lib/rubocop/cop/style/class_equality_comparison.rb +64 -0
  392. data/lib/rubocop/cop/style/class_methods.rb +7 -11
  393. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  394. data/lib/rubocop/cop/style/class_vars.rb +23 -7
  395. data/lib/rubocop/cop/style/collection_compact.rb +91 -0
  396. data/lib/rubocop/cop/style/collection_methods.rb +13 -17
  397. data/lib/rubocop/cop/style/colon_method_call.rb +9 -10
  398. data/lib/rubocop/cop/style/colon_method_definition.rb +6 -6
  399. data/lib/rubocop/cop/style/combinable_loops.rb +91 -0
  400. data/lib/rubocop/cop/style/command_literal.rb +24 -25
  401. data/lib/rubocop/cop/style/comment_annotation.rb +23 -17
  402. data/lib/rubocop/cop/style/commented_keyword.rb +23 -35
  403. data/lib/rubocop/cop/style/conditional_assignment.rb +77 -82
  404. data/lib/rubocop/cop/style/constant_visibility.rb +17 -5
  405. data/lib/rubocop/cop/style/copyright.rb +27 -23
  406. data/lib/rubocop/cop/style/date_time.rb +17 -6
  407. data/lib/rubocop/cop/style/def_with_parentheses.rb +8 -10
  408. data/lib/rubocop/cop/style/dir.rb +11 -13
  409. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +47 -0
  410. data/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
  411. data/lib/rubocop/cop/style/documentation.rb +62 -15
  412. data/lib/rubocop/cop/style/documentation_method.rb +46 -2
  413. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  414. data/lib/rubocop/cop/style/double_negation.rb +49 -6
  415. data/lib/rubocop/cop/style/each_for_simple_loop.rb +6 -9
  416. data/lib/rubocop/cop/style/each_with_object.rb +17 -20
  417. data/lib/rubocop/cop/style/empty_block_parameter.rb +9 -10
  418. data/lib/rubocop/cop/style/empty_case_condition.rb +29 -28
  419. data/lib/rubocop/cop/style/empty_else.rb +17 -19
  420. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +9 -10
  421. data/lib/rubocop/cop/style/empty_literal.rb +26 -27
  422. data/lib/rubocop/cop/style/empty_method.rb +13 -20
  423. data/lib/rubocop/cop/style/encoding.rb +6 -10
  424. data/lib/rubocop/cop/style/end_block.rb +6 -2
  425. data/lib/rubocop/cop/style/eval_with_location.rb +10 -10
  426. data/lib/rubocop/cop/style/even_odd.rb +10 -13
  427. data/lib/rubocop/cop/style/expand_path_arguments.rb +30 -29
  428. data/lib/rubocop/cop/style/explicit_block_argument.rb +106 -0
  429. data/lib/rubocop/cop/style/exponential_notation.rb +117 -0
  430. data/lib/rubocop/cop/style/float_division.rb +136 -0
  431. data/lib/rubocop/cop/style/for.rb +7 -15
  432. data/lib/rubocop/cop/style/format_string.rb +48 -37
  433. data/lib/rubocop/cop/style/format_string_token.rb +70 -77
  434. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +113 -65
  435. data/lib/rubocop/cop/style/global_std_stream.rb +65 -0
  436. data/lib/rubocop/cop/style/global_vars.rb +2 -2
  437. data/lib/rubocop/cop/style/guard_clause.rb +69 -16
  438. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  439. data/lib/rubocop/cop/style/hash_each_methods.rb +86 -0
  440. data/lib/rubocop/cop/style/hash_like_case.rb +76 -0
  441. data/lib/rubocop/cop/style/hash_syntax.rb +32 -23
  442. data/lib/rubocop/cop/style/hash_transform_keys.rb +91 -0
  443. data/lib/rubocop/cop/style/hash_transform_values.rb +88 -0
  444. data/lib/rubocop/cop/style/identical_conditional_branches.rb +9 -4
  445. data/lib/rubocop/cop/style/if_inside_else.rb +80 -2
  446. data/lib/rubocop/cop/style/if_unless_modifier.rb +124 -44
  447. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +11 -3
  448. data/lib/rubocop/cop/style/if_with_semicolon.rb +51 -3
  449. data/lib/rubocop/cop/style/implicit_runtime_error.rb +2 -1
  450. data/lib/rubocop/cop/style/infinite_loop.rb +33 -28
  451. data/lib/rubocop/cop/style/inline_comment.rb +4 -4
  452. data/lib/rubocop/cop/style/inverse_methods.rb +39 -39
  453. data/lib/rubocop/cop/style/ip_addresses.rb +6 -6
  454. data/lib/rubocop/cop/style/keyword_parameters_order.rb +65 -0
  455. data/lib/rubocop/cop/style/lambda.rb +9 -15
  456. data/lib/rubocop/cop/style/lambda_call.rb +17 -34
  457. data/lib/rubocop/cop/style/line_end_concatenation.rb +33 -26
  458. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +169 -0
  459. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +44 -0
  460. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +32 -226
  461. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +18 -10
  462. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +12 -3
  463. data/lib/rubocop/cop/style/method_def_parentheses.rb +21 -22
  464. data/lib/rubocop/cop/style/min_max.rb +9 -13
  465. data/lib/rubocop/cop/style/missing_else.rb +11 -21
  466. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +10 -3
  467. data/lib/rubocop/cop/style/mixin_grouping.rb +26 -33
  468. data/lib/rubocop/cop/style/mixin_usage.rb +12 -21
  469. data/lib/rubocop/cop/style/module_function.rb +64 -21
  470. data/lib/rubocop/cop/style/multiline_block_chain.rb +12 -3
  471. data/lib/rubocop/cop/style/multiline_if_modifier.rb +4 -11
  472. data/lib/rubocop/cop/style/multiline_if_then.rb +5 -11
  473. data/lib/rubocop/cop/style/multiline_memoization.rb +16 -14
  474. data/lib/rubocop/cop/style/multiline_method_signature.rb +2 -2
  475. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +31 -9
  476. data/lib/rubocop/cop/style/multiline_when_then.rb +73 -0
  477. data/lib/rubocop/cop/style/multiple_comparison.rb +56 -8
  478. data/lib/rubocop/cop/style/mutable_constant.rb +30 -29
  479. data/lib/rubocop/cop/style/negated_if.rb +9 -9
  480. data/lib/rubocop/cop/style/negated_if_else_condition.rb +106 -0
  481. data/lib/rubocop/cop/style/negated_unless.rb +9 -9
  482. data/lib/rubocop/cop/style/negated_while.rb +7 -15
  483. data/lib/rubocop/cop/style/nested_modifier.rb +31 -16
  484. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +21 -22
  485. data/lib/rubocop/cop/style/nested_ternary_operator.rb +29 -2
  486. data/lib/rubocop/cop/style/next.rb +19 -23
  487. data/lib/rubocop/cop/style/nil_comparison.rb +13 -11
  488. data/lib/rubocop/cop/style/nil_lambda.rb +52 -0
  489. data/lib/rubocop/cop/style/non_nil_check.rb +55 -35
  490. data/lib/rubocop/cop/style/not.rb +20 -26
  491. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +6 -11
  492. data/lib/rubocop/cop/style/numeric_literals.rb +21 -14
  493. data/lib/rubocop/cop/style/numeric_predicate.rb +14 -19
  494. data/lib/rubocop/cop/style/one_line_conditional.rb +76 -29
  495. data/lib/rubocop/cop/style/option_hash.rb +5 -5
  496. data/lib/rubocop/cop/style/optional_arguments.rb +2 -2
  497. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  498. data/lib/rubocop/cop/style/or_assignment.rb +24 -15
  499. data/lib/rubocop/cop/style/parallel_assignment.rb +18 -18
  500. data/lib/rubocop/cop/style/parentheses_around_condition.rb +21 -7
  501. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +21 -27
  502. data/lib/rubocop/cop/style/percent_q_literals.rb +8 -10
  503. data/lib/rubocop/cop/style/perl_backrefs.rb +91 -16
  504. data/lib/rubocop/cop/style/preferred_hash_methods.rb +11 -14
  505. data/lib/rubocop/cop/style/proc.rb +7 -7
  506. data/lib/rubocop/cop/style/raise_args.rb +33 -30
  507. data/lib/rubocop/cop/style/random_with_offset.rb +29 -34
  508. data/lib/rubocop/cop/style/redundant_argument.rb +88 -0
  509. data/lib/rubocop/cop/style/redundant_assignment.rb +107 -0
  510. data/lib/rubocop/cop/style/redundant_begin.rb +35 -9
  511. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +6 -9
  512. data/lib/rubocop/cop/style/{unneeded_condition.rb → redundant_condition.rb} +43 -15
  513. data/lib/rubocop/cop/style/redundant_conditional.rb +11 -11
  514. data/lib/rubocop/cop/style/redundant_exception.rb +21 -15
  515. data/lib/rubocop/cop/style/redundant_fetch_block.rb +113 -0
  516. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +51 -0
  517. data/lib/rubocop/cop/style/redundant_freeze.rb +7 -9
  518. data/lib/rubocop/cop/style/{unneeded_interpolation.rb → redundant_interpolation.rb} +31 -25
  519. data/lib/rubocop/cop/style/redundant_parentheses.rb +53 -32
  520. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +13 -15
  521. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +104 -0
  522. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +121 -0
  523. data/lib/rubocop/cop/style/redundant_return.rb +52 -44
  524. data/lib/rubocop/cop/style/redundant_self.rb +36 -21
  525. data/lib/rubocop/cop/style/redundant_self_assignment.rb +116 -0
  526. data/lib/rubocop/cop/style/{unneeded_sort.rb → redundant_sort.rb} +31 -34
  527. data/lib/rubocop/cop/style/redundant_sort_by.rb +6 -10
  528. data/lib/rubocop/cop/style/regexp_literal.rb +10 -21
  529. data/lib/rubocop/cop/style/rescue_modifier.rb +53 -9
  530. data/lib/rubocop/cop/style/rescue_standard_error.rb +23 -19
  531. data/lib/rubocop/cop/style/return_nil.rb +7 -7
  532. data/lib/rubocop/cop/style/safe_navigation.rb +54 -20
  533. data/lib/rubocop/cop/style/sample.rb +14 -16
  534. data/lib/rubocop/cop/style/self_assignment.rb +26 -22
  535. data/lib/rubocop/cop/style/semicolon.rb +23 -12
  536. data/lib/rubocop/cop/style/send.rb +4 -5
  537. data/lib/rubocop/cop/style/signal_exception.rb +26 -20
  538. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  539. data/lib/rubocop/cop/style/single_line_block_params.rb +32 -7
  540. data/lib/rubocop/cop/style/single_line_methods.rb +26 -18
  541. data/lib/rubocop/cop/style/slicing_with_range.rb +37 -0
  542. data/lib/rubocop/cop/style/sole_nested_conditional.rb +128 -0
  543. data/lib/rubocop/cop/style/special_global_vars.rb +18 -41
  544. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +17 -23
  545. data/lib/rubocop/cop/style/static_class.rb +97 -0
  546. data/lib/rubocop/cop/style/stderr_puts.rb +7 -8
  547. data/lib/rubocop/cop/style/string_concatenation.rb +143 -0
  548. data/lib/rubocop/cop/style/string_hash_keys.rb +8 -9
  549. data/lib/rubocop/cop/style/string_literals.rb +14 -8
  550. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +4 -3
  551. data/lib/rubocop/cop/style/string_methods.rb +7 -17
  552. data/lib/rubocop/cop/style/strip.rb +10 -15
  553. data/lib/rubocop/cop/style/struct_inheritance.rb +23 -5
  554. data/lib/rubocop/cop/style/swap_values.rb +108 -0
  555. data/lib/rubocop/cop/style/symbol_array.rb +13 -24
  556. data/lib/rubocop/cop/style/symbol_literal.rb +6 -8
  557. data/lib/rubocop/cop/style/symbol_proc.rb +22 -24
  558. data/lib/rubocop/cop/style/ternary_parentheses.rb +57 -31
  559. data/lib/rubocop/cop/style/trailing_body_on_class.rb +3 -6
  560. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +4 -7
  561. data/lib/rubocop/cop/style/trailing_body_on_module.rb +3 -6
  562. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +39 -25
  563. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +43 -5
  564. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +90 -0
  565. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +46 -5
  566. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +9 -34
  567. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +19 -22
  568. data/lib/rubocop/cop/style/trivial_accessors.rb +36 -39
  569. data/lib/rubocop/cop/style/unless_else.rb +6 -9
  570. data/lib/rubocop/cop/style/unpack_first.rb +5 -12
  571. data/lib/rubocop/cop/style/variable_interpolation.rb +11 -24
  572. data/lib/rubocop/cop/style/when_then.rb +5 -7
  573. data/lib/rubocop/cop/style/while_until_do.rb +6 -16
  574. data/lib/rubocop/cop/style/while_until_modifier.rb +17 -22
  575. data/lib/rubocop/cop/style/word_array.rb +8 -26
  576. data/lib/rubocop/cop/style/yoda_condition.rb +29 -8
  577. data/lib/rubocop/cop/style/zero_length_predicate.rb +25 -27
  578. data/lib/rubocop/cop/team.rb +159 -87
  579. data/lib/rubocop/cop/util.rb +36 -19
  580. data/lib/rubocop/cop/utils/format_string.rb +135 -0
  581. data/lib/rubocop/cop/variable_force/assignment.rb +1 -0
  582. data/lib/rubocop/cop/variable_force/branch.rb +2 -7
  583. data/lib/rubocop/cop/variable_force/scope.rb +2 -1
  584. data/lib/rubocop/cop/variable_force/variable.rb +20 -8
  585. data/lib/rubocop/cop/variable_force.rb +16 -17
  586. data/lib/rubocop/cops_documentation_generator.rb +284 -0
  587. data/lib/rubocop/core_ext/hash.rb +20 -0
  588. data/lib/rubocop/core_ext/string.rb +2 -26
  589. data/lib/rubocop/directive_comment.rb +32 -0
  590. data/lib/rubocop/error.rb +24 -0
  591. data/lib/rubocop/ext/processed_source.rb +18 -0
  592. data/lib/rubocop/ext/regexp_node.rb +87 -0
  593. data/lib/rubocop/ext/regexp_parser.rb +95 -0
  594. data/lib/rubocop/file_finder.rb +13 -12
  595. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +2 -1
  596. data/lib/rubocop/formatter/base_formatter.rb +0 -4
  597. data/lib/rubocop/formatter/clang_style_formatter.rb +8 -5
  598. data/lib/rubocop/formatter/disabled_config_formatter.rb +36 -22
  599. data/lib/rubocop/formatter/emacs_style_formatter.rb +24 -9
  600. data/lib/rubocop/formatter/file_list_formatter.rb +1 -1
  601. data/lib/rubocop/formatter/formatter_set.rb +20 -19
  602. data/lib/rubocop/formatter/git_hub_actions_formatter.rb +47 -0
  603. data/lib/rubocop/formatter/html_formatter.rb +2 -0
  604. data/lib/rubocop/formatter/json_formatter.rb +6 -5
  605. data/lib/rubocop/formatter/junit_formatter.rb +84 -0
  606. data/lib/rubocop/formatter/offense_count_formatter.rb +1 -1
  607. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  608. data/lib/rubocop/formatter/progress_formatter.rb +2 -1
  609. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  610. data/lib/rubocop/formatter/simple_text_formatter.rb +54 -10
  611. data/lib/rubocop/formatter/tap_formatter.rb +19 -6
  612. data/lib/rubocop/formatter/worst_offenders_formatter.rb +1 -1
  613. data/lib/rubocop/lockfile.rb +40 -0
  614. data/lib/rubocop/magic_comment.rb +7 -3
  615. data/lib/rubocop/name_similarity.rb +18 -10
  616. data/lib/rubocop/options.rb +131 -60
  617. data/lib/rubocop/path_util.rb +19 -19
  618. data/lib/rubocop/platform.rb +1 -1
  619. data/lib/rubocop/rake_task.rb +10 -11
  620. data/lib/rubocop/remote_config.rb +2 -3
  621. data/lib/rubocop/result_cache.rb +69 -27
  622. data/lib/rubocop/rspec/cop_helper.rb +11 -32
  623. data/lib/rubocop/rspec/expect_offense.rb +107 -25
  624. data/lib/rubocop/rspec/shared_contexts.rb +89 -40
  625. data/lib/rubocop/rspec/support.rb +0 -1
  626. data/lib/rubocop/runner.rb +127 -73
  627. data/lib/rubocop/string_interpreter.rb +3 -0
  628. data/lib/rubocop/target_finder.rb +61 -48
  629. data/lib/rubocop/target_ruby.rb +224 -0
  630. data/lib/rubocop/version.rb +65 -7
  631. data/lib/rubocop/yaml_duplication_checker.rb +9 -2
  632. data/lib/rubocop.rb +172 -145
  633. metadata +230 -184
  634. data/bin/console +0 -9
  635. data/bin/setup +0 -7
  636. data/lib/rubocop/ast/builder.rb +0 -79
  637. data/lib/rubocop/ast/node/alias_node.rb +0 -24
  638. data/lib/rubocop/ast/node/and_node.rb +0 -29
  639. data/lib/rubocop/ast/node/args_node.rb +0 -29
  640. data/lib/rubocop/ast/node/array_node.rb +0 -57
  641. data/lib/rubocop/ast/node/block_node.rb +0 -115
  642. data/lib/rubocop/ast/node/break_node.rb +0 -17
  643. data/lib/rubocop/ast/node/case_node.rb +0 -56
  644. data/lib/rubocop/ast/node/class_node.rb +0 -31
  645. data/lib/rubocop/ast/node/def_node.rb +0 -71
  646. data/lib/rubocop/ast/node/defined_node.rb +0 -17
  647. data/lib/rubocop/ast/node/ensure_node.rb +0 -17
  648. data/lib/rubocop/ast/node/for_node.rb +0 -53
  649. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  650. data/lib/rubocop/ast/node/if_node.rb +0 -175
  651. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  652. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  653. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -43
  654. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  655. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  656. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  657. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -261
  658. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -114
  659. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  660. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  661. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  662. data/lib/rubocop/ast/node/module_node.rb +0 -24
  663. data/lib/rubocop/ast/node/or_node.rb +0 -29
  664. data/lib/rubocop/ast/node/pair_node.rb +0 -63
  665. data/lib/rubocop/ast/node/range_node.rb +0 -18
  666. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  667. data/lib/rubocop/ast/node/resbody_node.rb +0 -29
  668. data/lib/rubocop/ast/node/retry_node.rb +0 -17
  669. data/lib/rubocop/ast/node/self_class_node.rb +0 -24
  670. data/lib/rubocop/ast/node/send_node.rb +0 -13
  671. data/lib/rubocop/ast/node/str_node.rb +0 -16
  672. data/lib/rubocop/ast/node/super_node.rb +0 -21
  673. data/lib/rubocop/ast/node/symbol_node.rb +0 -12
  674. data/lib/rubocop/ast/node/until_node.rb +0 -35
  675. data/lib/rubocop/ast/node/when_node.rb +0 -53
  676. data/lib/rubocop/ast/node/while_node.rb +0 -35
  677. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  678. data/lib/rubocop/ast/node.rb +0 -646
  679. data/lib/rubocop/ast/sexp.rb +0 -16
  680. data/lib/rubocop/ast/traversal.rb +0 -183
  681. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  682. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -256
  683. data/lib/rubocop/cop/layout/tab.rb +0 -87
  684. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  685. data/lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb +0 -116
  686. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  687. data/lib/rubocop/cop/mixin/classish_length.rb +0 -37
  688. data/lib/rubocop/cop/mixin/ignored_method_patterns.rb +0 -19
  689. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  690. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  691. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  692. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -35
  693. data/lib/rubocop/cop/rails/action_filter.rb +0 -117
  694. data/lib/rubocop/cop/rails/active_record_aliases.rb +0 -48
  695. data/lib/rubocop/cop/rails/active_record_override.rb +0 -82
  696. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -69
  697. data/lib/rubocop/cop/rails/application_job.rb +0 -40
  698. data/lib/rubocop/cop/rails/application_record.rb +0 -40
  699. data/lib/rubocop/cop/rails/assert_not.rb +0 -44
  700. data/lib/rubocop/cop/rails/belongs_to.rb +0 -102
  701. data/lib/rubocop/cop/rails/blank.rb +0 -164
  702. data/lib/rubocop/cop/rails/bulk_change_table.rb +0 -289
  703. data/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -91
  704. data/lib/rubocop/cop/rails/date.rb +0 -161
  705. data/lib/rubocop/cop/rails/delegate.rb +0 -132
  706. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -37
  707. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -91
  708. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -45
  709. data/lib/rubocop/cop/rails/environment_comparison.rb +0 -68
  710. data/lib/rubocop/cop/rails/exit.rb +0 -67
  711. data/lib/rubocop/cop/rails/file_path.rb +0 -108
  712. data/lib/rubocop/cop/rails/find_by.rb +0 -55
  713. data/lib/rubocop/cop/rails/find_each.rb +0 -51
  714. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -25
  715. data/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -106
  716. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -117
  717. data/lib/rubocop/cop/rails/http_status.rb +0 -179
  718. data/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +0 -94
  719. data/lib/rubocop/cop/rails/inverse_of.rb +0 -246
  720. data/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -175
  721. data/lib/rubocop/cop/rails/link_to_blank.rb +0 -98
  722. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  723. data/lib/rubocop/cop/rails/output.rb +0 -49
  724. data/lib/rubocop/cop/rails/output_safety.rb +0 -99
  725. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -107
  726. data/lib/rubocop/cop/rails/presence.rb +0 -124
  727. data/lib/rubocop/cop/rails/present.rb +0 -153
  728. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -74
  729. data/lib/rubocop/cop/rails/redundant_allow_nil.rb +0 -111
  730. data/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -136
  731. data/lib/rubocop/cop/rails/reflection_class_name.rb +0 -37
  732. data/lib/rubocop/cop/rails/refute_methods.rb +0 -76
  733. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -93
  734. data/lib/rubocop/cop/rails/request_referer.rb +0 -56
  735. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -286
  736. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -87
  737. data/lib/rubocop/cop/rails/save_bang.rb +0 -316
  738. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  739. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -87
  740. data/lib/rubocop/cop/rails/time_zone.rb +0 -238
  741. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -105
  742. data/lib/rubocop/cop/rails/unknown_env.rb +0 -63
  743. data/lib/rubocop/cop/rails/validation.rb +0 -109
  744. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -190
  745. data/lib/rubocop/cop/style/method_missing_super.rb +0 -34
  746. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  747. data/lib/rubocop/node_pattern.rb +0 -720
  748. data/lib/rubocop/processed_source.rb +0 -208
  749. data/lib/rubocop/rspec/shared_examples.rb +0 -59
  750. data/lib/rubocop/string_util.rb +0 -14
  751. data/lib/rubocop/token.rb +0 -114
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bozhidar Batsov
@@ -10,22 +10,8 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2019-05-21 00:00:00.000000000 Z
13
+ date: 2020-12-10 00:00:00.000000000 Z
14
14
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: jaro_winkler
17
- requirement: !ruby/object:Gem::Requirement
18
- requirements:
19
- - - "~>"
20
- - !ruby/object:Gem::Version
21
- version: 1.5.1
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- requirements:
26
- - - "~>"
27
- - !ruby/object:Gem::Version
28
- version: 1.5.1
29
15
  - !ruby/object:Gem::Dependency
30
16
  name: parallel
31
17
  requirement: !ruby/object:Gem::Requirement
@@ -46,14 +32,14 @@ dependencies:
46
32
  requirements:
47
33
  - - ">="
48
34
  - !ruby/object:Gem::Version
49
- version: '2.6'
35
+ version: 2.7.1.5
50
36
  type: :runtime
51
37
  prerelease: false
52
38
  version_requirements: !ruby/object:Gem::Requirement
53
39
  requirements:
54
40
  - - ">="
55
41
  - !ruby/object:Gem::Version
56
- version: '2.6'
42
+ version: 2.7.1.5
57
43
  - !ruby/object:Gem::Dependency
58
44
  name: rainbow
59
45
  requirement: !ruby/object:Gem::Requirement
@@ -74,6 +60,60 @@ dependencies:
74
60
  - - "<"
75
61
  - !ruby/object:Gem::Version
76
62
  version: '4.0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: regexp_parser
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '1.8'
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: '3.0'
73
+ type: :runtime
74
+ prerelease: false
75
+ version_requirements: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '1.8'
80
+ - - "<"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rexml
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-ast
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 1.2.0
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '2.0'
107
+ type: :runtime
108
+ prerelease: false
109
+ version_requirements: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: 1.2.0
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: '2.0'
77
117
  - !ruby/object:Gem::Dependency
78
118
  name: ruby-progressbar
79
119
  requirement: !ruby/object:Gem::Requirement
@@ -97,7 +137,7 @@ dependencies:
97
137
  version: 1.4.0
98
138
  - - "<"
99
139
  - !ruby/object:Gem::Version
100
- version: '1.7'
140
+ version: '2.0'
101
141
  type: :runtime
102
142
  prerelease: false
103
143
  version_requirements: !ruby/object:Gem::Requirement
@@ -107,7 +147,7 @@ dependencies:
107
147
  version: 1.4.0
108
148
  - - "<"
109
149
  - !ruby/object:Gem::Version
110
- version: '1.7'
150
+ version: '2.0'
111
151
  - !ruby/object:Gem::Dependency
112
152
  name: bundler
113
153
  requirement: !ruby/object:Gem::Requirement
@@ -128,23 +168,9 @@ dependencies:
128
168
  - - "<"
129
169
  - !ruby/object:Gem::Version
130
170
  version: '3.0'
131
- - !ruby/object:Gem::Dependency
132
- name: rack
133
- requirement: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - ">="
136
- - !ruby/object:Gem::Version
137
- version: '2.0'
138
- type: :development
139
- prerelease: false
140
- version_requirements: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - ">="
143
- - !ruby/object:Gem::Version
144
- version: '2.0'
145
171
  description: |2
146
- Automatic Ruby code style checking tool.
147
- Aims to enforce the community-driven Ruby Style Guide.
172
+ RuboCop is a Ruby code style checking and code formatting tool.
173
+ It aims to enforce the community-driven Ruby Style Guide.
148
174
  email: rubocop@googlegroups.com
149
175
  executables:
150
176
  - rubocop
@@ -157,65 +183,42 @@ files:
157
183
  - README.md
158
184
  - assets/logo.png
159
185
  - assets/output.html.erb
160
- - bin/console
161
- - bin/setup
162
186
  - config/default.yml
187
+ - config/obsoletion.yml
163
188
  - exe/rubocop
164
189
  - lib/rubocop.rb
165
- - lib/rubocop/ast/builder.rb
166
- - lib/rubocop/ast/node.rb
167
- - lib/rubocop/ast/node/alias_node.rb
168
- - lib/rubocop/ast/node/and_node.rb
169
- - lib/rubocop/ast/node/args_node.rb
170
- - lib/rubocop/ast/node/array_node.rb
171
- - lib/rubocop/ast/node/block_node.rb
172
- - lib/rubocop/ast/node/break_node.rb
173
- - lib/rubocop/ast/node/case_node.rb
174
- - lib/rubocop/ast/node/class_node.rb
175
- - lib/rubocop/ast/node/def_node.rb
176
- - lib/rubocop/ast/node/defined_node.rb
177
- - lib/rubocop/ast/node/ensure_node.rb
178
- - lib/rubocop/ast/node/for_node.rb
179
- - lib/rubocop/ast/node/hash_node.rb
180
- - lib/rubocop/ast/node/if_node.rb
181
- - lib/rubocop/ast/node/keyword_splat_node.rb
182
- - lib/rubocop/ast/node/mixin/basic_literal_node.rb
183
- - lib/rubocop/ast/node/mixin/binary_operator_node.rb
184
- - lib/rubocop/ast/node/mixin/collection_node.rb
185
- - lib/rubocop/ast/node/mixin/conditional_node.rb
186
- - lib/rubocop/ast/node/mixin/hash_element_node.rb
187
- - lib/rubocop/ast/node/mixin/method_dispatch_node.rb
188
- - lib/rubocop/ast/node/mixin/method_identifier_predicates.rb
189
- - lib/rubocop/ast/node/mixin/modifier_node.rb
190
- - lib/rubocop/ast/node/mixin/parameterized_node.rb
191
- - lib/rubocop/ast/node/mixin/predicate_operator_node.rb
192
- - lib/rubocop/ast/node/module_node.rb
193
- - lib/rubocop/ast/node/or_node.rb
194
- - lib/rubocop/ast/node/pair_node.rb
195
- - lib/rubocop/ast/node/range_node.rb
196
- - lib/rubocop/ast/node/regexp_node.rb
197
- - lib/rubocop/ast/node/resbody_node.rb
198
- - lib/rubocop/ast/node/retry_node.rb
199
- - lib/rubocop/ast/node/self_class_node.rb
200
- - lib/rubocop/ast/node/send_node.rb
201
- - lib/rubocop/ast/node/str_node.rb
202
- - lib/rubocop/ast/node/super_node.rb
203
- - lib/rubocop/ast/node/symbol_node.rb
204
- - lib/rubocop/ast/node/until_node.rb
205
- - lib/rubocop/ast/node/when_node.rb
206
- - lib/rubocop/ast/node/while_node.rb
207
- - lib/rubocop/ast/node/yield_node.rb
208
- - lib/rubocop/ast/sexp.rb
209
- - lib/rubocop/ast/traversal.rb
190
+ - lib/rubocop/ast_aliases.rb
210
191
  - lib/rubocop/cached_data.rb
211
192
  - lib/rubocop/cli.rb
193
+ - lib/rubocop/cli/command.rb
194
+ - lib/rubocop/cli/command/auto_genenerate_config.rb
195
+ - lib/rubocop/cli/command/base.rb
196
+ - lib/rubocop/cli/command/execute_runner.rb
197
+ - lib/rubocop/cli/command/init_dotfile.rb
198
+ - lib/rubocop/cli/command/show_cops.rb
199
+ - lib/rubocop/cli/command/suggest_extensions.rb
200
+ - lib/rubocop/cli/command/version.rb
201
+ - lib/rubocop/cli/environment.rb
212
202
  - lib/rubocop/comment_config.rb
213
203
  - lib/rubocop/config.rb
214
204
  - lib/rubocop/config_loader.rb
215
205
  - lib/rubocop/config_loader_resolver.rb
206
+ - lib/rubocop/config_obsoletion.rb
207
+ - lib/rubocop/config_obsoletion/changed_enforced_styles.rb
208
+ - lib/rubocop/config_obsoletion/changed_parameter.rb
209
+ - lib/rubocop/config_obsoletion/cop_rule.rb
210
+ - lib/rubocop/config_obsoletion/extracted_cop.rb
211
+ - lib/rubocop/config_obsoletion/parameter_rule.rb
212
+ - lib/rubocop/config_obsoletion/removed_cop.rb
213
+ - lib/rubocop/config_obsoletion/renamed_cop.rb
214
+ - lib/rubocop/config_obsoletion/rule.rb
215
+ - lib/rubocop/config_obsoletion/split_cop.rb
216
+ - lib/rubocop/config_regeneration.rb
216
217
  - lib/rubocop/config_store.rb
218
+ - lib/rubocop/config_validator.rb
217
219
  - lib/rubocop/cop/autocorrect_logic.rb
218
220
  - lib/rubocop/cop/badge.rb
221
+ - lib/rubocop/cop/base.rb
219
222
  - lib/rubocop/cop/bundler/duplicated_gem.rb
220
223
  - lib/rubocop/cop/bundler/gem_comment.rb
221
224
  - lib/rubocop/cop/bundler/insecure_protocol_source.rb
@@ -238,15 +241,18 @@ files:
238
241
  - lib/rubocop/cop/correctors/space_corrector.rb
239
242
  - lib/rubocop/cop/correctors/string_literal_corrector.rb
240
243
  - lib/rubocop/cop/correctors/unused_arg_corrector.rb
244
+ - lib/rubocop/cop/documentation.rb
241
245
  - lib/rubocop/cop/force.rb
242
246
  - lib/rubocop/cop/gemspec/duplicated_assignment.rb
243
247
  - lib/rubocop/cop/gemspec/ordered_dependencies.rb
244
248
  - lib/rubocop/cop/gemspec/required_ruby_version.rb
249
+ - lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb
245
250
  - lib/rubocop/cop/generator.rb
246
251
  - lib/rubocop/cop/generator/configuration_injector.rb
247
252
  - lib/rubocop/cop/generator/require_file_injector.rb
248
253
  - lib/rubocop/cop/ignored_node.rb
249
254
  - lib/rubocop/cop/internal_affairs.rb
255
+ - lib/rubocop/cop/internal_affairs/method_name_equal.rb
250
256
  - lib/rubocop/cop/internal_affairs/node_destructuring.rb
251
257
  - lib/rubocop/cop/internal_affairs/node_type_predicate.rb
252
258
  - lib/rubocop/cop/internal_affairs/offense_location_keyword.rb
@@ -254,10 +260,10 @@ files:
254
260
  - lib/rubocop/cop/internal_affairs/redundant_message_argument.rb
255
261
  - lib/rubocop/cop/internal_affairs/useless_message_assertion.rb
256
262
  - lib/rubocop/cop/layout/access_modifier_indentation.rb
257
- - lib/rubocop/cop/layout/align_arguments.rb
258
- - lib/rubocop/cop/layout/align_array.rb
259
- - lib/rubocop/cop/layout/align_hash.rb
260
- - lib/rubocop/cop/layout/align_parameters.rb
263
+ - lib/rubocop/cop/layout/argument_alignment.rb
264
+ - lib/rubocop/cop/layout/array_alignment.rb
265
+ - lib/rubocop/cop/layout/assignment_indentation.rb
266
+ - lib/rubocop/cop/layout/begin_end_alignment.rb
261
267
  - lib/rubocop/cop/layout/block_alignment.rb
262
268
  - lib/rubocop/cop/layout/block_end_newline.rb
263
269
  - lib/rubocop/cop/layout/case_indentation.rb
@@ -272,10 +278,12 @@ files:
272
278
  - lib/rubocop/cop/layout/empty_comment.rb
273
279
  - lib/rubocop/cop/layout/empty_line_after_guard_clause.rb
274
280
  - lib/rubocop/cop/layout/empty_line_after_magic_comment.rb
281
+ - lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb
275
282
  - lib/rubocop/cop/layout/empty_line_between_defs.rb
276
283
  - lib/rubocop/cop/layout/empty_lines.rb
277
284
  - lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb
278
285
  - lib/rubocop/cop/layout/empty_lines_around_arguments.rb
286
+ - lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb
279
287
  - lib/rubocop/cop/layout/empty_lines_around_begin_body.rb
280
288
  - lib/rubocop/cop/layout/empty_lines_around_block_body.rb
281
289
  - lib/rubocop/cop/layout/empty_lines_around_class_body.rb
@@ -285,22 +293,24 @@ files:
285
293
  - lib/rubocop/cop/layout/end_alignment.rb
286
294
  - lib/rubocop/cop/layout/end_of_line.rb
287
295
  - lib/rubocop/cop/layout/extra_spacing.rb
296
+ - lib/rubocop/cop/layout/first_argument_indentation.rb
297
+ - lib/rubocop/cop/layout/first_array_element_indentation.rb
288
298
  - lib/rubocop/cop/layout/first_array_element_line_break.rb
299
+ - lib/rubocop/cop/layout/first_hash_element_indentation.rb
289
300
  - lib/rubocop/cop/layout/first_hash_element_line_break.rb
290
301
  - lib/rubocop/cop/layout/first_method_argument_line_break.rb
291
302
  - lib/rubocop/cop/layout/first_method_parameter_line_break.rb
303
+ - lib/rubocop/cop/layout/first_parameter_indentation.rb
304
+ - lib/rubocop/cop/layout/hash_alignment.rb
292
305
  - lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb
293
- - lib/rubocop/cop/layout/indent_assignment.rb
294
- - lib/rubocop/cop/layout/indent_first_argument.rb
295
- - lib/rubocop/cop/layout/indent_first_array_element.rb
296
- - lib/rubocop/cop/layout/indent_first_hash_element.rb
297
- - lib/rubocop/cop/layout/indent_first_parameter.rb
298
- - lib/rubocop/cop/layout/indent_heredoc.rb
306
+ - lib/rubocop/cop/layout/heredoc_indentation.rb
299
307
  - lib/rubocop/cop/layout/indentation_consistency.rb
308
+ - lib/rubocop/cop/layout/indentation_style.rb
300
309
  - lib/rubocop/cop/layout/indentation_width.rb
301
310
  - lib/rubocop/cop/layout/initial_indentation.rb
302
- - lib/rubocop/cop/layout/leading_blank_lines.rb
303
311
  - lib/rubocop/cop/layout/leading_comment_space.rb
312
+ - lib/rubocop/cop/layout/leading_empty_lines.rb
313
+ - lib/rubocop/cop/layout/line_length.rb
304
314
  - lib/rubocop/cop/layout/multiline_array_brace_layout.rb
305
315
  - lib/rubocop/cop/layout/multiline_array_line_breaks.rb
306
316
  - lib/rubocop/cop/layout/multiline_assignment_layout.rb
@@ -312,6 +322,7 @@ files:
312
322
  - lib/rubocop/cop/layout/multiline_method_call_indentation.rb
313
323
  - lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb
314
324
  - lib/rubocop/cop/layout/multiline_operation_indentation.rb
325
+ - lib/rubocop/cop/layout/parameter_alignment.rb
315
326
  - lib/rubocop/cop/layout/rescue_ensure_alignment.rb
316
327
  - lib/rubocop/cop/layout/space_after_colon.rb
317
328
  - lib/rubocop/cop/layout/space_after_comma.rb
@@ -321,6 +332,7 @@ files:
321
332
  - lib/rubocop/cop/layout/space_around_block_parameters.rb
322
333
  - lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb
323
334
  - lib/rubocop/cop/layout/space_around_keyword.rb
335
+ - lib/rubocop/cop/layout/space_around_method_call_operator.rb
324
336
  - lib/rubocop/cop/layout/space_around_operators.rb
325
337
  - lib/rubocop/cop/layout/space_before_block_braces.rb
326
338
  - lib/rubocop/cop/layout/space_before_comma.rb
@@ -337,36 +349,51 @@ files:
337
349
  - lib/rubocop/cop/layout/space_inside_range_literal.rb
338
350
  - lib/rubocop/cop/layout/space_inside_reference_brackets.rb
339
351
  - lib/rubocop/cop/layout/space_inside_string_interpolation.rb
340
- - lib/rubocop/cop/layout/tab.rb
341
- - lib/rubocop/cop/layout/trailing_blank_lines.rb
352
+ - lib/rubocop/cop/layout/trailing_empty_lines.rb
342
353
  - lib/rubocop/cop/layout/trailing_whitespace.rb
354
+ - lib/rubocop/cop/legacy/corrections_proxy.rb
355
+ - lib/rubocop/cop/legacy/corrector.rb
343
356
  - lib/rubocop/cop/lint/ambiguous_block_association.rb
344
357
  - lib/rubocop/cop/lint/ambiguous_operator.rb
345
358
  - lib/rubocop/cop/lint/ambiguous_regexp_literal.rb
346
359
  - lib/rubocop/cop/lint/assignment_in_condition.rb
347
360
  - lib/rubocop/cop/lint/big_decimal_new.rb
361
+ - lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb
348
362
  - lib/rubocop/cop/lint/boolean_symbol.rb
349
363
  - lib/rubocop/cop/lint/circular_argument_reference.rb
364
+ - lib/rubocop/cop/lint/constant_definition_in_block.rb
365
+ - lib/rubocop/cop/lint/constant_resolution.rb
350
366
  - lib/rubocop/cop/lint/debugger.rb
351
367
  - lib/rubocop/cop/lint/deprecated_class_methods.rb
368
+ - lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb
352
369
  - lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb
370
+ - lib/rubocop/cop/lint/duplicate_branch.rb
353
371
  - lib/rubocop/cop/lint/duplicate_case_condition.rb
372
+ - lib/rubocop/cop/lint/duplicate_elsif_condition.rb
373
+ - lib/rubocop/cop/lint/duplicate_hash_key.rb
354
374
  - lib/rubocop/cop/lint/duplicate_methods.rb
355
- - lib/rubocop/cop/lint/duplicated_key.rb
375
+ - lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb
376
+ - lib/rubocop/cop/lint/duplicate_require.rb
377
+ - lib/rubocop/cop/lint/duplicate_rescue_exception.rb
356
378
  - lib/rubocop/cop/lint/each_with_object_argument.rb
357
379
  - lib/rubocop/cop/lint/else_layout.rb
380
+ - lib/rubocop/cop/lint/empty_block.rb
381
+ - lib/rubocop/cop/lint/empty_class.rb
382
+ - lib/rubocop/cop/lint/empty_conditional_body.rb
358
383
  - lib/rubocop/cop/lint/empty_ensure.rb
359
384
  - lib/rubocop/cop/lint/empty_expression.rb
385
+ - lib/rubocop/cop/lint/empty_file.rb
360
386
  - lib/rubocop/cop/lint/empty_interpolation.rb
361
387
  - lib/rubocop/cop/lint/empty_when.rb
362
- - lib/rubocop/cop/lint/end_in_method.rb
363
388
  - lib/rubocop/cop/lint/ensure_return.rb
364
389
  - lib/rubocop/cop/lint/erb_new_arguments.rb
365
390
  - lib/rubocop/cop/lint/flip_flop.rb
391
+ - lib/rubocop/cop/lint/float_comparison.rb
366
392
  - lib/rubocop/cop/lint/float_out_of_range.rb
367
393
  - lib/rubocop/cop/lint/format_parameter_mismatch.rb
368
- - lib/rubocop/cop/lint/handle_exceptions.rb
394
+ - lib/rubocop/cop/lint/hash_compare_by_identity.rb
369
395
  - lib/rubocop/cop/lint/heredoc_method_call_position.rb
396
+ - lib/rubocop/cop/lint/identity_comparison.rb
370
397
  - lib/rubocop/cop/lint/implicit_string_concatenation.rb
371
398
  - lib/rubocop/cop/lint/ineffective_access_modifier.rb
372
399
  - lib/rubocop/cop/lint/inherit_exception.rb
@@ -375,17 +402,29 @@ files:
375
402
  - lib/rubocop/cop/lint/literal_in_interpolation.rb
376
403
  - lib/rubocop/cop/lint/loop.rb
377
404
  - lib/rubocop/cop/lint/missing_cop_enable_directive.rb
378
- - lib/rubocop/cop/lint/multiple_compare.rb
405
+ - lib/rubocop/cop/lint/missing_super.rb
406
+ - lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
407
+ - lib/rubocop/cop/lint/multiple_comparison.rb
379
408
  - lib/rubocop/cop/lint/nested_method_definition.rb
380
409
  - lib/rubocop/cop/lint/nested_percent_literal.rb
381
410
  - lib/rubocop/cop/lint/next_without_accumulator.rb
411
+ - lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb
412
+ - lib/rubocop/cop/lint/non_deterministic_require_order.rb
382
413
  - lib/rubocop/cop/lint/non_local_exit_from_iterator.rb
383
414
  - lib/rubocop/cop/lint/number_conversion.rb
384
415
  - lib/rubocop/cop/lint/ordered_magic_comments.rb
416
+ - lib/rubocop/cop/lint/out_of_range_regexp_ref.rb
385
417
  - lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb
386
418
  - lib/rubocop/cop/lint/percent_string_array.rb
387
419
  - lib/rubocop/cop/lint/percent_symbol_array.rb
420
+ - lib/rubocop/cop/lint/raise_exception.rb
388
421
  - lib/rubocop/cop/lint/rand_one.rb
422
+ - lib/rubocop/cop/lint/redundant_cop_disable_directive.rb
423
+ - lib/rubocop/cop/lint/redundant_cop_enable_directive.rb
424
+ - lib/rubocop/cop/lint/redundant_require_statement.rb
425
+ - lib/rubocop/cop/lint/redundant_safe_navigation.rb
426
+ - lib/rubocop/cop/lint/redundant_splat_expansion.rb
427
+ - lib/rubocop/cop/lint/redundant_string_coercion.rb
389
428
  - lib/rubocop/cop/lint/redundant_with_index.rb
390
429
  - lib/rubocop/cop/lint/redundant_with_object.rb
391
430
  - lib/rubocop/cop/lint/regexp_as_condition.rb
@@ -397,28 +436,34 @@ files:
397
436
  - lib/rubocop/cop/lint/safe_navigation_consistency.rb
398
437
  - lib/rubocop/cop/lint/safe_navigation_with_empty.rb
399
438
  - lib/rubocop/cop/lint/script_permission.rb
439
+ - lib/rubocop/cop/lint/self_assignment.rb
440
+ - lib/rubocop/cop/lint/send_with_mixin_argument.rb
400
441
  - lib/rubocop/cop/lint/shadowed_argument.rb
401
442
  - lib/rubocop/cop/lint/shadowed_exception.rb
402
443
  - lib/rubocop/cop/lint/shadowing_outer_local_variable.rb
403
- - lib/rubocop/cop/lint/string_conversion_in_interpolation.rb
444
+ - lib/rubocop/cop/lint/struct_new_override.rb
445
+ - lib/rubocop/cop/lint/suppressed_exception.rb
404
446
  - lib/rubocop/cop/lint/syntax.rb
447
+ - lib/rubocop/cop/lint/to_enum_arguments.rb
405
448
  - lib/rubocop/cop/lint/to_json.rb
449
+ - lib/rubocop/cop/lint/top_level_return_with_argument.rb
450
+ - lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb
406
451
  - lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb
452
+ - lib/rubocop/cop/lint/unexpected_block_arity.rb
407
453
  - lib/rubocop/cop/lint/unified_integer.rb
408
- - lib/rubocop/cop/lint/unneeded_cop_disable_directive.rb
409
- - lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb
410
- - lib/rubocop/cop/lint/unneeded_require_statement.rb
411
- - lib/rubocop/cop/lint/unneeded_splat_expansion.rb
454
+ - lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb
412
455
  - lib/rubocop/cop/lint/unreachable_code.rb
456
+ - lib/rubocop/cop/lint/unreachable_loop.rb
413
457
  - lib/rubocop/cop/lint/unused_block_argument.rb
414
458
  - lib/rubocop/cop/lint/unused_method_argument.rb
415
459
  - lib/rubocop/cop/lint/uri_escape_unescape.rb
416
460
  - lib/rubocop/cop/lint/uri_regexp.rb
417
461
  - lib/rubocop/cop/lint/useless_access_modifier.rb
418
462
  - lib/rubocop/cop/lint/useless_assignment.rb
419
- - lib/rubocop/cop/lint/useless_comparison.rb
420
463
  - lib/rubocop/cop/lint/useless_else_without_rescue.rb
464
+ - lib/rubocop/cop/lint/useless_method_definition.rb
421
465
  - lib/rubocop/cop/lint/useless_setter_call.rb
466
+ - lib/rubocop/cop/lint/useless_times.rb
422
467
  - lib/rubocop/cop/lint/void.rb
423
468
  - lib/rubocop/cop/message_annotator.rb
424
469
  - lib/rubocop/cop/metrics/abc_size.rb
@@ -426,20 +471,26 @@ files:
426
471
  - lib/rubocop/cop/metrics/block_nesting.rb
427
472
  - lib/rubocop/cop/metrics/class_length.rb
428
473
  - lib/rubocop/cop/metrics/cyclomatic_complexity.rb
429
- - lib/rubocop/cop/metrics/line_length.rb
430
474
  - lib/rubocop/cop/metrics/method_length.rb
431
475
  - lib/rubocop/cop/metrics/module_length.rb
432
476
  - lib/rubocop/cop/metrics/parameter_lists.rb
433
477
  - lib/rubocop/cop/metrics/perceived_complexity.rb
434
478
  - lib/rubocop/cop/metrics/utils/abc_size_calculator.rb
479
+ - lib/rubocop/cop/metrics/utils/code_length_calculator.rb
480
+ - lib/rubocop/cop/metrics/utils/iterating_block.rb
481
+ - lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb
482
+ - lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb
483
+ - lib/rubocop/cop/migration/department_name.rb
435
484
  - lib/rubocop/cop/mixin/alignment.rb
485
+ - lib/rubocop/cop/mixin/allowed_methods.rb
436
486
  - lib/rubocop/cop/mixin/annotation_comment.rb
437
487
  - lib/rubocop/cop/mixin/array_min_size.rb
438
488
  - lib/rubocop/cop/mixin/array_syntax.rb
489
+ - lib/rubocop/cop/mixin/auto_corrector.rb
439
490
  - lib/rubocop/cop/mixin/check_assignment.rb
440
491
  - lib/rubocop/cop/mixin/check_line_breakable.rb
441
- - lib/rubocop/cop/mixin/classish_length.rb
442
492
  - lib/rubocop/cop/mixin/code_length.rb
493
+ - lib/rubocop/cop/mixin/comments_help.rb
443
494
  - lib/rubocop/cop/mixin/configurable_enforced_style.rb
444
495
  - lib/rubocop/cop/mixin/configurable_formatting.rb
445
496
  - lib/rubocop/cop/mixin/configurable_max.rb
@@ -454,12 +505,14 @@ files:
454
505
  - lib/rubocop/cop/mixin/enforce_superclass.rb
455
506
  - lib/rubocop/cop/mixin/first_element_line_break.rb
456
507
  - lib/rubocop/cop/mixin/frozen_string_literal.rb
457
- - lib/rubocop/cop/mixin/hash_alignment.rb
508
+ - lib/rubocop/cop/mixin/hash_alignment_styles.rb
509
+ - lib/rubocop/cop/mixin/hash_transform_method.rb
458
510
  - lib/rubocop/cop/mixin/heredoc.rb
459
- - lib/rubocop/cop/mixin/ignored_method_patterns.rb
460
511
  - lib/rubocop/cop/mixin/ignored_methods.rb
461
512
  - lib/rubocop/cop/mixin/ignored_pattern.rb
462
513
  - lib/rubocop/cop/mixin/integer_node.rb
514
+ - lib/rubocop/cop/mixin/interpolation.rb
515
+ - lib/rubocop/cop/mixin/line_length_help.rb
463
516
  - lib/rubocop/cop/mixin/match_range.rb
464
517
  - lib/rubocop/cop/mixin/method_complexity.rb
465
518
  - lib/rubocop/cop/mixin/method_preference.rb
@@ -473,31 +526,30 @@ files:
473
526
  - lib/rubocop/cop/mixin/on_normal_if_unless.rb
474
527
  - lib/rubocop/cop/mixin/ordered_gem_node.rb
475
528
  - lib/rubocop/cop/mixin/parentheses.rb
476
- - lib/rubocop/cop/mixin/parser_diagnostic.rb
477
529
  - lib/rubocop/cop/mixin/percent_array.rb
478
530
  - lib/rubocop/cop/mixin/percent_literal.rb
479
531
  - lib/rubocop/cop/mixin/preceding_following_alignment.rb
480
532
  - lib/rubocop/cop/mixin/preferred_delimiters.rb
481
533
  - lib/rubocop/cop/mixin/range_help.rb
534
+ - lib/rubocop/cop/mixin/rational_literal.rb
482
535
  - lib/rubocop/cop/mixin/rescue_node.rb
483
536
  - lib/rubocop/cop/mixin/safe_assignment.rb
484
- - lib/rubocop/cop/mixin/safe_mode.rb
485
537
  - lib/rubocop/cop/mixin/space_after_punctuation.rb
486
538
  - lib/rubocop/cop/mixin/space_before_punctuation.rb
487
539
  - lib/rubocop/cop/mixin/statement_modifier.rb
488
540
  - lib/rubocop/cop/mixin/string_help.rb
489
541
  - lib/rubocop/cop/mixin/string_literals_help.rb
490
542
  - lib/rubocop/cop/mixin/surrounding_space.rb
491
- - lib/rubocop/cop/mixin/target_rails_version.rb
492
543
  - lib/rubocop/cop/mixin/target_ruby_version.rb
493
- - lib/rubocop/cop/mixin/too_many_lines.rb
494
544
  - lib/rubocop/cop/mixin/trailing_body.rb
495
545
  - lib/rubocop/cop/mixin/trailing_comma.rb
496
546
  - lib/rubocop/cop/mixin/uncommunicative_name.rb
497
547
  - lib/rubocop/cop/mixin/unused_argument.rb
548
+ - lib/rubocop/cop/mixin/visibility_help.rb
498
549
  - lib/rubocop/cop/naming/accessor_method_name.rb
499
550
  - lib/rubocop/cop/naming/ascii_identifiers.rb
500
551
  - lib/rubocop/cop/naming/binary_operator_parameter_name.rb
552
+ - lib/rubocop/cop/naming/block_parameter_name.rb
501
553
  - lib/rubocop/cop/naming/class_and_module_camel_case.rb
502
554
  - lib/rubocop/cop/naming/constant_name.rb
503
555
  - lib/rubocop/cop/naming/file_name.rb
@@ -505,64 +557,12 @@ files:
505
557
  - lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
506
558
  - lib/rubocop/cop/naming/memoized_instance_variable_name.rb
507
559
  - lib/rubocop/cop/naming/method_name.rb
560
+ - lib/rubocop/cop/naming/method_parameter_name.rb
508
561
  - lib/rubocop/cop/naming/predicate_name.rb
509
562
  - lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb
510
- - lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
511
- - lib/rubocop/cop/naming/uncommunicative_method_param_name.rb
512
563
  - lib/rubocop/cop/naming/variable_name.rb
513
564
  - lib/rubocop/cop/naming/variable_number.rb
514
565
  - lib/rubocop/cop/offense.rb
515
- - lib/rubocop/cop/rails/action_filter.rb
516
- - lib/rubocop/cop/rails/active_record_aliases.rb
517
- - lib/rubocop/cop/rails/active_record_override.rb
518
- - lib/rubocop/cop/rails/active_support_aliases.rb
519
- - lib/rubocop/cop/rails/application_job.rb
520
- - lib/rubocop/cop/rails/application_record.rb
521
- - lib/rubocop/cop/rails/assert_not.rb
522
- - lib/rubocop/cop/rails/belongs_to.rb
523
- - lib/rubocop/cop/rails/blank.rb
524
- - lib/rubocop/cop/rails/bulk_change_table.rb
525
- - lib/rubocop/cop/rails/create_table_with_timestamps.rb
526
- - lib/rubocop/cop/rails/date.rb
527
- - lib/rubocop/cop/rails/delegate.rb
528
- - lib/rubocop/cop/rails/delegate_allow_blank.rb
529
- - lib/rubocop/cop/rails/dynamic_find_by.rb
530
- - lib/rubocop/cop/rails/enum_uniqueness.rb
531
- - lib/rubocop/cop/rails/environment_comparison.rb
532
- - lib/rubocop/cop/rails/exit.rb
533
- - lib/rubocop/cop/rails/file_path.rb
534
- - lib/rubocop/cop/rails/find_by.rb
535
- - lib/rubocop/cop/rails/find_each.rb
536
- - lib/rubocop/cop/rails/has_and_belongs_to_many.rb
537
- - lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb
538
- - lib/rubocop/cop/rails/http_positional_arguments.rb
539
- - lib/rubocop/cop/rails/http_status.rb
540
- - lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb
541
- - lib/rubocop/cop/rails/inverse_of.rb
542
- - lib/rubocop/cop/rails/lexically_scoped_action_filter.rb
543
- - lib/rubocop/cop/rails/link_to_blank.rb
544
- - lib/rubocop/cop/rails/not_null_column.rb
545
- - lib/rubocop/cop/rails/output.rb
546
- - lib/rubocop/cop/rails/output_safety.rb
547
- - lib/rubocop/cop/rails/pluralization_grammar.rb
548
- - lib/rubocop/cop/rails/presence.rb
549
- - lib/rubocop/cop/rails/present.rb
550
- - lib/rubocop/cop/rails/read_write_attribute.rb
551
- - lib/rubocop/cop/rails/redundant_allow_nil.rb
552
- - lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb
553
- - lib/rubocop/cop/rails/reflection_class_name.rb
554
- - lib/rubocop/cop/rails/refute_methods.rb
555
- - lib/rubocop/cop/rails/relative_date_constant.rb
556
- - lib/rubocop/cop/rails/request_referer.rb
557
- - lib/rubocop/cop/rails/reversible_migration.rb
558
- - lib/rubocop/cop/rails/safe_navigation.rb
559
- - lib/rubocop/cop/rails/save_bang.rb
560
- - lib/rubocop/cop/rails/scope_args.rb
561
- - lib/rubocop/cop/rails/skips_model_validations.rb
562
- - lib/rubocop/cop/rails/time_zone.rb
563
- - lib/rubocop/cop/rails/uniq_before_pluck.rb
564
- - lib/rubocop/cop/rails/unknown_env.rb
565
- - lib/rubocop/cop/rails/validation.rb
566
566
  - lib/rubocop/cop/registry.rb
567
567
  - lib/rubocop/cop/security/eval.rb
568
568
  - lib/rubocop/cop/security/json_load.rb
@@ -571,26 +571,34 @@ files:
571
571
  - lib/rubocop/cop/security/yaml_load.rb
572
572
  - lib/rubocop/cop/severity.rb
573
573
  - lib/rubocop/cop/style/access_modifier_declarations.rb
574
+ - lib/rubocop/cop/style/accessor_grouping.rb
574
575
  - lib/rubocop/cop/style/alias.rb
575
576
  - lib/rubocop/cop/style/and_or.rb
577
+ - lib/rubocop/cop/style/arguments_forwarding.rb
578
+ - lib/rubocop/cop/style/array_coercion.rb
576
579
  - lib/rubocop/cop/style/array_join.rb
577
580
  - lib/rubocop/cop/style/ascii_comments.rb
578
581
  - lib/rubocop/cop/style/attr.rb
579
582
  - lib/rubocop/cop/style/auto_resource_cleanup.rb
580
583
  - lib/rubocop/cop/style/bare_percent_literals.rb
581
584
  - lib/rubocop/cop/style/begin_block.rb
585
+ - lib/rubocop/cop/style/bisected_attr_accessor.rb
582
586
  - lib/rubocop/cop/style/block_comments.rb
583
587
  - lib/rubocop/cop/style/block_delimiters.rb
584
- - lib/rubocop/cop/style/braces_around_hash_parameters.rb
585
588
  - lib/rubocop/cop/style/case_equality.rb
589
+ - lib/rubocop/cop/style/case_like_if.rb
586
590
  - lib/rubocop/cop/style/character_literal.rb
587
591
  - lib/rubocop/cop/style/class_and_module_children.rb
588
592
  - lib/rubocop/cop/style/class_check.rb
593
+ - lib/rubocop/cop/style/class_equality_comparison.rb
589
594
  - lib/rubocop/cop/style/class_methods.rb
595
+ - lib/rubocop/cop/style/class_methods_definitions.rb
590
596
  - lib/rubocop/cop/style/class_vars.rb
597
+ - lib/rubocop/cop/style/collection_compact.rb
591
598
  - lib/rubocop/cop/style/collection_methods.rb
592
599
  - lib/rubocop/cop/style/colon_method_call.rb
593
600
  - lib/rubocop/cop/style/colon_method_definition.rb
601
+ - lib/rubocop/cop/style/combinable_loops.rb
594
602
  - lib/rubocop/cop/style/command_literal.rb
595
603
  - lib/rubocop/cop/style/comment_annotation.rb
596
604
  - lib/rubocop/cop/style/commented_keyword.rb
@@ -600,8 +608,11 @@ files:
600
608
  - lib/rubocop/cop/style/date_time.rb
601
609
  - lib/rubocop/cop/style/def_with_parentheses.rb
602
610
  - lib/rubocop/cop/style/dir.rb
611
+ - lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb
612
+ - lib/rubocop/cop/style/document_dynamic_eval_definition.rb
603
613
  - lib/rubocop/cop/style/documentation.rb
604
614
  - lib/rubocop/cop/style/documentation_method.rb
615
+ - lib/rubocop/cop/style/double_cop_disable_directive.rb
605
616
  - lib/rubocop/cop/style/double_negation.rb
606
617
  - lib/rubocop/cop/style/each_for_simple_loop.rb
607
618
  - lib/rubocop/cop/style/each_with_object.rb
@@ -616,13 +627,22 @@ files:
616
627
  - lib/rubocop/cop/style/eval_with_location.rb
617
628
  - lib/rubocop/cop/style/even_odd.rb
618
629
  - lib/rubocop/cop/style/expand_path_arguments.rb
630
+ - lib/rubocop/cop/style/explicit_block_argument.rb
631
+ - lib/rubocop/cop/style/exponential_notation.rb
632
+ - lib/rubocop/cop/style/float_division.rb
619
633
  - lib/rubocop/cop/style/for.rb
620
634
  - lib/rubocop/cop/style/format_string.rb
621
635
  - lib/rubocop/cop/style/format_string_token.rb
622
636
  - lib/rubocop/cop/style/frozen_string_literal_comment.rb
637
+ - lib/rubocop/cop/style/global_std_stream.rb
623
638
  - lib/rubocop/cop/style/global_vars.rb
624
639
  - lib/rubocop/cop/style/guard_clause.rb
640
+ - lib/rubocop/cop/style/hash_as_last_array_item.rb
641
+ - lib/rubocop/cop/style/hash_each_methods.rb
642
+ - lib/rubocop/cop/style/hash_like_case.rb
625
643
  - lib/rubocop/cop/style/hash_syntax.rb
644
+ - lib/rubocop/cop/style/hash_transform_keys.rb
645
+ - lib/rubocop/cop/style/hash_transform_values.rb
626
646
  - lib/rubocop/cop/style/identical_conditional_branches.rb
627
647
  - lib/rubocop/cop/style/if_inside_else.rb
628
648
  - lib/rubocop/cop/style/if_unless_modifier.rb
@@ -633,14 +653,16 @@ files:
633
653
  - lib/rubocop/cop/style/inline_comment.rb
634
654
  - lib/rubocop/cop/style/inverse_methods.rb
635
655
  - lib/rubocop/cop/style/ip_addresses.rb
656
+ - lib/rubocop/cop/style/keyword_parameters_order.rb
636
657
  - lib/rubocop/cop/style/lambda.rb
637
658
  - lib/rubocop/cop/style/lambda_call.rb
638
659
  - lib/rubocop/cop/style/line_end_concatenation.rb
639
660
  - lib/rubocop/cop/style/method_call_with_args_parentheses.rb
661
+ - lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb
662
+ - lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb
640
663
  - lib/rubocop/cop/style/method_call_without_args_parentheses.rb
641
664
  - lib/rubocop/cop/style/method_called_on_do_end_block.rb
642
665
  - lib/rubocop/cop/style/method_def_parentheses.rb
643
- - lib/rubocop/cop/style/method_missing_super.rb
644
666
  - lib/rubocop/cop/style/min_max.rb
645
667
  - lib/rubocop/cop/style/missing_else.rb
646
668
  - lib/rubocop/cop/style/missing_respond_to_missing.rb
@@ -653,9 +675,11 @@ files:
653
675
  - lib/rubocop/cop/style/multiline_memoization.rb
654
676
  - lib/rubocop/cop/style/multiline_method_signature.rb
655
677
  - lib/rubocop/cop/style/multiline_ternary_operator.rb
678
+ - lib/rubocop/cop/style/multiline_when_then.rb
656
679
  - lib/rubocop/cop/style/multiple_comparison.rb
657
680
  - lib/rubocop/cop/style/mutable_constant.rb
658
681
  - lib/rubocop/cop/style/negated_if.rb
682
+ - lib/rubocop/cop/style/negated_if_else_condition.rb
659
683
  - lib/rubocop/cop/style/negated_unless.rb
660
684
  - lib/rubocop/cop/style/negated_while.rb
661
685
  - lib/rubocop/cop/style/nested_modifier.rb
@@ -663,6 +687,7 @@ files:
663
687
  - lib/rubocop/cop/style/nested_ternary_operator.rb
664
688
  - lib/rubocop/cop/style/next.rb
665
689
  - lib/rubocop/cop/style/nil_comparison.rb
690
+ - lib/rubocop/cop/style/nil_lambda.rb
666
691
  - lib/rubocop/cop/style/non_nil_check.rb
667
692
  - lib/rubocop/cop/style/not.rb
668
693
  - lib/rubocop/cop/style/numeric_literal_prefix.rb
@@ -671,6 +696,7 @@ files:
671
696
  - lib/rubocop/cop/style/one_line_conditional.rb
672
697
  - lib/rubocop/cop/style/option_hash.rb
673
698
  - lib/rubocop/cop/style/optional_arguments.rb
699
+ - lib/rubocop/cop/style/optional_boolean_parameter.rb
674
700
  - lib/rubocop/cop/style/or_assignment.rb
675
701
  - lib/rubocop/cop/style/parallel_assignment.rb
676
702
  - lib/rubocop/cop/style/parentheses_around_condition.rb
@@ -681,13 +707,25 @@ files:
681
707
  - lib/rubocop/cop/style/proc.rb
682
708
  - lib/rubocop/cop/style/raise_args.rb
683
709
  - lib/rubocop/cop/style/random_with_offset.rb
710
+ - lib/rubocop/cop/style/redundant_argument.rb
711
+ - lib/rubocop/cop/style/redundant_assignment.rb
684
712
  - lib/rubocop/cop/style/redundant_begin.rb
713
+ - lib/rubocop/cop/style/redundant_capital_w.rb
714
+ - lib/rubocop/cop/style/redundant_condition.rb
685
715
  - lib/rubocop/cop/style/redundant_conditional.rb
686
716
  - lib/rubocop/cop/style/redundant_exception.rb
717
+ - lib/rubocop/cop/style/redundant_fetch_block.rb
718
+ - lib/rubocop/cop/style/redundant_file_extension_in_require.rb
687
719
  - lib/rubocop/cop/style/redundant_freeze.rb
720
+ - lib/rubocop/cop/style/redundant_interpolation.rb
688
721
  - lib/rubocop/cop/style/redundant_parentheses.rb
722
+ - lib/rubocop/cop/style/redundant_percent_q.rb
723
+ - lib/rubocop/cop/style/redundant_regexp_character_class.rb
724
+ - lib/rubocop/cop/style/redundant_regexp_escape.rb
689
725
  - lib/rubocop/cop/style/redundant_return.rb
690
726
  - lib/rubocop/cop/style/redundant_self.rb
727
+ - lib/rubocop/cop/style/redundant_self_assignment.rb
728
+ - lib/rubocop/cop/style/redundant_sort.rb
691
729
  - lib/rubocop/cop/style/redundant_sort_by.rb
692
730
  - lib/rubocop/cop/style/regexp_literal.rb
693
731
  - lib/rubocop/cop/style/rescue_modifier.rb
@@ -699,17 +737,23 @@ files:
699
737
  - lib/rubocop/cop/style/semicolon.rb
700
738
  - lib/rubocop/cop/style/send.rb
701
739
  - lib/rubocop/cop/style/signal_exception.rb
740
+ - lib/rubocop/cop/style/single_argument_dig.rb
702
741
  - lib/rubocop/cop/style/single_line_block_params.rb
703
742
  - lib/rubocop/cop/style/single_line_methods.rb
743
+ - lib/rubocop/cop/style/slicing_with_range.rb
744
+ - lib/rubocop/cop/style/sole_nested_conditional.rb
704
745
  - lib/rubocop/cop/style/special_global_vars.rb
705
746
  - lib/rubocop/cop/style/stabby_lambda_parentheses.rb
747
+ - lib/rubocop/cop/style/static_class.rb
706
748
  - lib/rubocop/cop/style/stderr_puts.rb
749
+ - lib/rubocop/cop/style/string_concatenation.rb
707
750
  - lib/rubocop/cop/style/string_hash_keys.rb
708
751
  - lib/rubocop/cop/style/string_literals.rb
709
752
  - lib/rubocop/cop/style/string_literals_in_interpolation.rb
710
753
  - lib/rubocop/cop/style/string_methods.rb
711
754
  - lib/rubocop/cop/style/strip.rb
712
755
  - lib/rubocop/cop/style/struct_inheritance.rb
756
+ - lib/rubocop/cop/style/swap_values.rb
713
757
  - lib/rubocop/cop/style/symbol_array.rb
714
758
  - lib/rubocop/cop/style/symbol_literal.rb
715
759
  - lib/rubocop/cop/style/symbol_proc.rb
@@ -719,16 +763,12 @@ files:
719
763
  - lib/rubocop/cop/style/trailing_body_on_module.rb
720
764
  - lib/rubocop/cop/style/trailing_comma_in_arguments.rb
721
765
  - lib/rubocop/cop/style/trailing_comma_in_array_literal.rb
766
+ - lib/rubocop/cop/style/trailing_comma_in_block_args.rb
722
767
  - lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb
723
768
  - lib/rubocop/cop/style/trailing_method_end_statement.rb
724
769
  - lib/rubocop/cop/style/trailing_underscore_variable.rb
725
770
  - lib/rubocop/cop/style/trivial_accessors.rb
726
771
  - lib/rubocop/cop/style/unless_else.rb
727
- - lib/rubocop/cop/style/unneeded_capital_w.rb
728
- - lib/rubocop/cop/style/unneeded_condition.rb
729
- - lib/rubocop/cop/style/unneeded_interpolation.rb
730
- - lib/rubocop/cop/style/unneeded_percent_q.rb
731
- - lib/rubocop/cop/style/unneeded_sort.rb
732
772
  - lib/rubocop/cop/style/unpack_first.rb
733
773
  - lib/rubocop/cop/style/variable_interpolation.rb
734
774
  - lib/rubocop/cop/style/when_then.rb
@@ -739,6 +779,7 @@ files:
739
779
  - lib/rubocop/cop/style/zero_length_predicate.rb
740
780
  - lib/rubocop/cop/team.rb
741
781
  - lib/rubocop/cop/util.rb
782
+ - lib/rubocop/cop/utils/format_string.rb
742
783
  - lib/rubocop/cop/variable_force.rb
743
784
  - lib/rubocop/cop/variable_force/assignment.rb
744
785
  - lib/rubocop/cop/variable_force/branch.rb
@@ -747,35 +788,42 @@ files:
747
788
  - lib/rubocop/cop/variable_force/scope.rb
748
789
  - lib/rubocop/cop/variable_force/variable.rb
749
790
  - lib/rubocop/cop/variable_force/variable_table.rb
791
+ - lib/rubocop/cops_documentation_generator.rb
792
+ - lib/rubocop/core_ext/hash.rb
750
793
  - lib/rubocop/core_ext/string.rb
794
+ - lib/rubocop/directive_comment.rb
751
795
  - lib/rubocop/error.rb
796
+ - lib/rubocop/ext/processed_source.rb
797
+ - lib/rubocop/ext/regexp_node.rb
798
+ - lib/rubocop/ext/regexp_parser.rb
752
799
  - lib/rubocop/file_finder.rb
753
800
  - lib/rubocop/formatter/auto_gen_config_formatter.rb
754
801
  - lib/rubocop/formatter/base_formatter.rb
755
802
  - lib/rubocop/formatter/clang_style_formatter.rb
756
803
  - lib/rubocop/formatter/colorizable.rb
757
804
  - lib/rubocop/formatter/disabled_config_formatter.rb
758
- - lib/rubocop/formatter/disabled_lines_formatter.rb
759
805
  - lib/rubocop/formatter/emacs_style_formatter.rb
760
806
  - lib/rubocop/formatter/file_list_formatter.rb
761
807
  - lib/rubocop/formatter/formatter_set.rb
762
808
  - lib/rubocop/formatter/fuubar_style_formatter.rb
809
+ - lib/rubocop/formatter/git_hub_actions_formatter.rb
763
810
  - lib/rubocop/formatter/html_formatter.rb
764
811
  - lib/rubocop/formatter/json_formatter.rb
812
+ - lib/rubocop/formatter/junit_formatter.rb
765
813
  - lib/rubocop/formatter/offense_count_formatter.rb
814
+ - lib/rubocop/formatter/pacman_formatter.rb
766
815
  - lib/rubocop/formatter/progress_formatter.rb
767
816
  - lib/rubocop/formatter/quiet_formatter.rb
768
817
  - lib/rubocop/formatter/simple_text_formatter.rb
769
818
  - lib/rubocop/formatter/tap_formatter.rb
770
819
  - lib/rubocop/formatter/text_util.rb
771
820
  - lib/rubocop/formatter/worst_offenders_formatter.rb
821
+ - lib/rubocop/lockfile.rb
772
822
  - lib/rubocop/magic_comment.rb
773
823
  - lib/rubocop/name_similarity.rb
774
- - lib/rubocop/node_pattern.rb
775
824
  - lib/rubocop/options.rb
776
825
  - lib/rubocop/path_util.rb
777
826
  - lib/rubocop/platform.rb
778
- - lib/rubocop/processed_source.rb
779
827
  - lib/rubocop/rake_task.rb
780
828
  - lib/rubocop/remote_config.rb
781
829
  - lib/rubocop/result_cache.rb
@@ -783,13 +831,11 @@ files:
783
831
  - lib/rubocop/rspec/expect_offense.rb
784
832
  - lib/rubocop/rspec/host_environment_simulation_helper.rb
785
833
  - lib/rubocop/rspec/shared_contexts.rb
786
- - lib/rubocop/rspec/shared_examples.rb
787
834
  - lib/rubocop/rspec/support.rb
788
835
  - lib/rubocop/runner.rb
789
836
  - lib/rubocop/string_interpreter.rb
790
- - lib/rubocop/string_util.rb
791
837
  - lib/rubocop/target_finder.rb
792
- - lib/rubocop/token.rb
838
+ - lib/rubocop/target_ruby.rb
793
839
  - lib/rubocop/version.rb
794
840
  - lib/rubocop/warning.rb
795
841
  - lib/rubocop/yaml_duplication_checker.rb
@@ -797,10 +843,10 @@ homepage: https://github.com/rubocop-hq/rubocop
797
843
  licenses:
798
844
  - MIT
799
845
  metadata:
800
- homepage_uri: https://www.rubocop.org/
846
+ homepage_uri: https://rubocop.org/
801
847
  changelog_uri: https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md
802
848
  source_code_uri: https://github.com/rubocop-hq/rubocop/
803
- documentation_uri: https://docs.rubocop.org/
849
+ documentation_uri: https://docs.rubocop.org/rubocop/1.6/
804
850
  bug_tracker_uri: https://github.com/rubocop-hq/rubocop/issues
805
851
  post_install_message:
806
852
  rdoc_options: []
@@ -810,14 +856,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
810
856
  requirements:
811
857
  - - ">="
812
858
  - !ruby/object:Gem::Version
813
- version: 2.3.0
859
+ version: 2.4.0
814
860
  required_rubygems_version: !ruby/object:Gem::Requirement
815
861
  requirements:
816
862
  - - ">="
817
863
  - !ruby/object:Gem::Version
818
864
  version: '0'
819
865
  requirements: []
820
- rubygems_version: 3.0.3
866
+ rubygems_version: 3.1.2
821
867
  signing_key:
822
868
  specification_version: 4
823
869
  summary: Automatic Ruby code style checking tool.