rubocop 0.52.1 → 0.93.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (749) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +49 -38
  4. data/assets/output.html.erb +1 -1
  5. data/bin/console +10 -0
  6. data/bin/rubocop-profile +32 -0
  7. data/bin/setup +7 -0
  8. data/config/default.yml +3332 -538
  9. data/{bin → exe}/rubocop +0 -0
  10. data/lib/rubocop.rb +206 -158
  11. data/lib/rubocop/ast_aliases.rb +8 -0
  12. data/lib/rubocop/cached_data.rb +4 -2
  13. data/lib/rubocop/cli.rb +50 -187
  14. data/lib/rubocop/cli/command.rb +22 -0
  15. data/lib/rubocop/cli/command/auto_genenerate_config.rb +141 -0
  16. data/lib/rubocop/cli/command/base.rb +35 -0
  17. data/lib/rubocop/cli/command/execute_runner.rb +85 -0
  18. data/lib/rubocop/cli/command/init_dotfile.rb +46 -0
  19. data/lib/rubocop/cli/command/show_cops.rb +77 -0
  20. data/lib/rubocop/cli/command/version.rb +18 -0
  21. data/lib/rubocop/cli/environment.rb +22 -0
  22. data/lib/rubocop/comment_config.rb +73 -12
  23. data/lib/rubocop/config.rb +117 -385
  24. data/lib/rubocop/config_loader.rb +145 -92
  25. data/lib/rubocop/config_loader_resolver.rb +124 -30
  26. data/lib/rubocop/config_obsoletion.rb +283 -0
  27. data/lib/rubocop/config_regeneration.rb +33 -0
  28. data/lib/rubocop/config_store.rb +19 -5
  29. data/lib/rubocop/config_validator.rb +224 -0
  30. data/lib/rubocop/cop/autocorrect_logic.rb +73 -4
  31. data/lib/rubocop/cop/badge.rb +7 -7
  32. data/lib/rubocop/cop/base.rb +430 -0
  33. data/lib/rubocop/cop/bundler/duplicated_gem.rb +9 -3
  34. data/lib/rubocop/cop/bundler/gem_comment.rb +138 -0
  35. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +19 -25
  36. data/lib/rubocop/cop/bundler/ordered_gems.rb +6 -4
  37. data/lib/rubocop/cop/commissioner.rb +102 -62
  38. data/lib/rubocop/cop/cop.rb +104 -181
  39. data/lib/rubocop/cop/corrector.rb +82 -98
  40. data/lib/rubocop/cop/correctors/alignment_corrector.rb +50 -29
  41. data/lib/rubocop/cop/correctors/condition_corrector.rb +3 -6
  42. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  43. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +9 -10
  44. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  45. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  46. data/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  47. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +82 -45
  48. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +6 -9
  49. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +112 -0
  50. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +8 -10
  51. data/lib/rubocop/cop/correctors/space_corrector.rb +15 -3
  52. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +2 -2
  53. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +18 -9
  54. data/lib/rubocop/cop/documentation.rb +22 -0
  55. data/lib/rubocop/cop/force.rb +2 -0
  56. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +7 -5
  57. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +5 -7
  58. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +49 -25
  59. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  60. data/lib/rubocop/cop/generator.rb +70 -37
  61. data/lib/rubocop/cop/generator/configuration_injector.rb +66 -0
  62. data/lib/rubocop/cop/generator/require_file_injector.rb +2 -2
  63. data/lib/rubocop/cop/ignored_node.rb +1 -3
  64. data/lib/rubocop/cop/internal_affairs.rb +1 -0
  65. data/lib/rubocop/cop/internal_affairs/method_name_equal.rb +52 -0
  66. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +13 -15
  67. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +14 -16
  68. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +12 -11
  69. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +15 -22
  70. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +13 -11
  71. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +5 -5
  72. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +15 -27
  73. data/lib/rubocop/cop/layout/{align_parameters.rb → argument_alignment.rb} +21 -17
  74. data/lib/rubocop/cop/layout/array_alignment.rb +83 -0
  75. data/lib/rubocop/cop/layout/{indent_assignment.rb → assignment_indentation.rb} +12 -3
  76. data/lib/rubocop/cop/layout/begin_end_alignment.rb +77 -0
  77. data/lib/rubocop/cop/{lint → layout}/block_alignment.rb +36 -29
  78. data/lib/rubocop/cop/layout/block_end_newline.rb +9 -20
  79. data/lib/rubocop/cop/layout/case_indentation.rb +23 -26
  80. data/lib/rubocop/cop/layout/class_structure.rb +97 -98
  81. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +124 -0
  82. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +140 -30
  83. data/lib/rubocop/cop/layout/comment_indentation.rb +34 -7
  84. data/lib/rubocop/cop/{lint → layout}/condition_position.rb +18 -10
  85. data/lib/rubocop/cop/{lint → layout}/def_end_alignment.rb +11 -7
  86. data/lib/rubocop/cop/layout/dot_position.rb +31 -27
  87. data/lib/rubocop/cop/layout/else_alignment.rb +28 -15
  88. data/lib/rubocop/cop/layout/empty_comment.rb +158 -0
  89. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +160 -0
  90. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +17 -16
  91. data/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
  92. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +32 -29
  93. data/lib/rubocop/cop/layout/empty_lines.rb +11 -12
  94. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +147 -39
  95. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +29 -18
  96. data/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +118 -0
  97. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +4 -8
  98. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +6 -7
  99. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +28 -11
  100. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +6 -9
  101. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +4 -7
  102. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +5 -9
  103. data/lib/rubocop/cop/{lint → layout}/end_alignment.rb +49 -23
  104. data/lib/rubocop/cop/layout/end_of_line.rb +48 -8
  105. data/lib/rubocop/cop/layout/extra_spacing.rb +71 -118
  106. data/lib/rubocop/cop/layout/first_argument_indentation.rb +251 -0
  107. data/lib/rubocop/cop/layout/{indent_array.rb → first_array_element_indentation.rb} +22 -16
  108. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +4 -7
  109. data/lib/rubocop/cop/layout/{indent_hash.rb → first_hash_element_indentation.rb} +10 -9
  110. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +3 -6
  111. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +8 -12
  112. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +3 -6
  113. data/lib/rubocop/cop/layout/first_parameter_indentation.rb +57 -76
  114. data/lib/rubocop/cop/layout/hash_alignment.rb +362 -0
  115. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +286 -0
  116. data/lib/rubocop/cop/layout/heredoc_indentation.rb +176 -0
  117. data/lib/rubocop/cop/layout/indentation_consistency.rb +155 -7
  118. data/lib/rubocop/cop/layout/indentation_style.rb +115 -0
  119. data/lib/rubocop/cop/layout/indentation_width.rb +72 -28
  120. data/lib/rubocop/cop/layout/initial_indentation.rb +24 -11
  121. data/lib/rubocop/cop/layout/leading_comment_space.rb +75 -12
  122. data/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
  123. data/lib/rubocop/cop/layout/line_length.rb +280 -0
  124. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +13 -16
  125. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +36 -0
  126. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +18 -16
  127. data/lib/rubocop/cop/layout/multiline_block_layout.rb +74 -29
  128. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +6 -13
  129. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +47 -0
  130. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +48 -0
  131. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +68 -38
  132. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +7 -8
  133. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +80 -42
  134. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +29 -5
  135. data/lib/rubocop/cop/layout/parameter_alignment.rb +118 -0
  136. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +142 -30
  137. data/lib/rubocop/cop/layout/space_after_colon.rb +13 -9
  138. data/lib/rubocop/cop/layout/space_after_comma.rb +2 -5
  139. data/lib/rubocop/cop/layout/space_after_method_name.rb +11 -9
  140. data/lib/rubocop/cop/layout/space_after_not.rb +13 -13
  141. data/lib/rubocop/cop/layout/space_after_semicolon.rb +2 -5
  142. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +76 -47
  143. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +33 -24
  144. data/lib/rubocop/cop/layout/space_around_keyword.rb +42 -29
  145. data/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
  146. data/lib/rubocop/cop/layout/space_around_operators.rb +132 -48
  147. data/lib/rubocop/cop/layout/space_before_block_braces.rb +69 -25
  148. data/lib/rubocop/cop/layout/space_before_comma.rb +3 -5
  149. data/lib/rubocop/cop/layout/space_before_comment.rb +15 -11
  150. data/lib/rubocop/cop/layout/space_before_first_arg.rb +18 -8
  151. data/lib/rubocop/cop/layout/space_before_semicolon.rb +2 -5
  152. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +29 -40
  153. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +68 -77
  154. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +5 -10
  155. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +41 -24
  156. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +68 -62
  157. data/lib/rubocop/cop/layout/space_inside_parens.rb +72 -17
  158. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +8 -13
  159. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +10 -19
  160. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +76 -26
  161. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +26 -42
  162. data/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
  163. data/lib/rubocop/cop/layout/trailing_whitespace.rb +58 -9
  164. data/lib/rubocop/cop/legacy/corrections_proxy.rb +49 -0
  165. data/lib/rubocop/cop/legacy/corrector.rb +29 -0
  166. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +15 -7
  167. data/lib/rubocop/cop/lint/ambiguous_operator.rb +54 -6
  168. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +36 -7
  169. data/lib/rubocop/cop/lint/assignment_in_condition.rb +30 -27
  170. data/lib/rubocop/cop/lint/big_decimal_new.rb +43 -0
  171. data/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +50 -0
  172. data/lib/rubocop/cop/lint/boolean_symbol.rb +23 -3
  173. data/lib/rubocop/cop/lint/circular_argument_reference.rb +3 -3
  174. data/lib/rubocop/cop/lint/constant_definition_in_block.rb +74 -0
  175. data/lib/rubocop/cop/lint/constant_resolution.rb +89 -0
  176. data/lib/rubocop/cop/lint/debugger.rb +14 -11
  177. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +41 -23
  178. data/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +141 -0
  179. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +87 -0
  180. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +2 -2
  181. data/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
  182. data/lib/rubocop/cop/lint/{duplicated_key.rb → duplicate_hash_key.rb} +2 -2
  183. data/lib/rubocop/cop/lint/duplicate_methods.rb +44 -30
  184. data/lib/rubocop/cop/lint/duplicate_require.rb +46 -0
  185. data/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
  186. data/lib/rubocop/cop/lint/each_with_object_argument.rb +7 -3
  187. data/lib/rubocop/cop/lint/else_layout.rb +3 -2
  188. data/lib/rubocop/cop/lint/empty_conditional_body.rb +67 -0
  189. data/lib/rubocop/cop/lint/empty_ensure.rb +6 -6
  190. data/lib/rubocop/cop/lint/empty_expression.rb +3 -3
  191. data/lib/rubocop/cop/lint/empty_file.rb +50 -0
  192. data/lib/rubocop/cop/lint/empty_interpolation.rb +9 -10
  193. data/lib/rubocop/cop/lint/empty_when.rb +32 -9
  194. data/lib/rubocop/cop/lint/ensure_return.rb +31 -13
  195. data/lib/rubocop/cop/lint/erb_new_arguments.rb +165 -0
  196. data/lib/rubocop/cop/{style → lint}/flip_flop.rb +5 -4
  197. data/lib/rubocop/cop/lint/float_comparison.rb +93 -0
  198. data/lib/rubocop/cop/lint/float_out_of_range.rb +3 -3
  199. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +65 -46
  200. data/lib/rubocop/cop/lint/hash_compare_by_identity.rb +37 -0
  201. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +155 -0
  202. data/lib/rubocop/cop/lint/identity_comparison.rb +51 -0
  203. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +26 -19
  204. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +43 -67
  205. data/lib/rubocop/cop/lint/inherit_exception.rb +34 -9
  206. data/lib/rubocop/cop/lint/interpolation_check.rb +24 -5
  207. data/lib/rubocop/cop/lint/literal_as_condition.rb +30 -24
  208. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +38 -16
  209. data/lib/rubocop/cop/lint/loop.rb +31 -8
  210. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +15 -11
  211. data/lib/rubocop/cop/lint/missing_super.rb +99 -0
  212. data/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
  213. data/lib/rubocop/cop/lint/{multiple_compare.rb → multiple_comparison.rb} +12 -13
  214. data/lib/rubocop/cop/lint/nested_method_definition.rb +21 -26
  215. data/lib/rubocop/cop/lint/nested_percent_literal.rb +7 -14
  216. data/lib/rubocop/cop/lint/next_without_accumulator.rb +3 -3
  217. data/lib/rubocop/cop/lint/non_deterministic_require_order.rb +160 -0
  218. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +14 -16
  219. data/lib/rubocop/cop/lint/number_conversion.rb +79 -0
  220. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +84 -0
  221. data/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +79 -0
  222. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +39 -15
  223. data/lib/rubocop/cop/lint/percent_string_array.rb +10 -17
  224. data/lib/rubocop/cop/lint/percent_symbol_array.rb +21 -17
  225. data/lib/rubocop/cop/lint/raise_exception.rb +86 -0
  226. data/lib/rubocop/cop/lint/rand_one.rb +7 -6
  227. data/lib/rubocop/cop/lint/{unneeded_disable.rb → redundant_cop_disable_directive.rb} +91 -76
  228. data/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +125 -0
  229. data/lib/rubocop/cop/lint/{unneeded_require_statement.rb → redundant_require_statement.rb} +12 -15
  230. data/lib/rubocop/cop/lint/redundant_safe_navigation.rb +78 -0
  231. data/lib/rubocop/cop/lint/{unneeded_splat_expansion.rb → redundant_splat_expansion.rb} +32 -23
  232. data/lib/rubocop/cop/lint/{string_conversion_in_interpolation.rb → redundant_string_coercion.rb} +15 -21
  233. data/lib/rubocop/cop/lint/redundant_with_index.rb +17 -18
  234. data/lib/rubocop/cop/lint/redundant_with_object.rb +18 -19
  235. data/lib/rubocop/cop/lint/regexp_as_condition.rb +7 -3
  236. data/lib/rubocop/cop/lint/require_parentheses.rb +6 -3
  237. data/lib/rubocop/cop/lint/rescue_exception.rb +4 -3
  238. data/lib/rubocop/cop/lint/rescue_type.rb +15 -12
  239. data/lib/rubocop/cop/lint/return_in_void_context.rb +4 -6
  240. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +21 -29
  241. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +98 -0
  242. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
  243. data/lib/rubocop/cop/lint/script_permission.rb +40 -16
  244. data/lib/rubocop/cop/lint/self_assignment.rb +78 -0
  245. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +87 -0
  246. data/lib/rubocop/cop/lint/shadowed_argument.rb +51 -15
  247. data/lib/rubocop/cop/lint/shadowed_exception.rb +47 -28
  248. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +9 -9
  249. data/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
  250. data/lib/rubocop/cop/lint/suppressed_exception.rb +89 -0
  251. data/lib/rubocop/cop/lint/syntax.rb +12 -28
  252. data/lib/rubocop/cop/lint/to_json.rb +50 -0
  253. data/lib/rubocop/cop/lint/top_level_return_with_argument.rb +34 -0
  254. data/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +57 -0
  255. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +30 -10
  256. data/lib/rubocop/cop/lint/unified_integer.rb +6 -8
  257. data/lib/rubocop/cop/lint/unreachable_code.rb +10 -8
  258. data/lib/rubocop/cop/lint/unreachable_loop.rb +171 -0
  259. data/lib/rubocop/cop/lint/unused_block_argument.rb +30 -9
  260. data/lib/rubocop/cop/lint/unused_method_argument.rb +64 -15
  261. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +19 -16
  262. data/lib/rubocop/cop/lint/uri_regexp.rb +12 -47
  263. data/lib/rubocop/cop/lint/useless_access_modifier.rb +110 -47
  264. data/lib/rubocop/cop/lint/useless_assignment.rb +12 -14
  265. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +10 -11
  266. data/lib/rubocop/cop/lint/useless_method_definition.rb +70 -0
  267. data/lib/rubocop/cop/lint/useless_setter_call.rb +17 -16
  268. data/lib/rubocop/cop/lint/useless_times.rb +106 -0
  269. data/lib/rubocop/cop/lint/void.rb +63 -35
  270. data/lib/rubocop/cop/message_annotator.rb +22 -11
  271. data/lib/rubocop/cop/metrics/abc_size.rb +4 -19
  272. data/lib/rubocop/cop/metrics/block_length.rb +46 -4
  273. data/lib/rubocop/cop/metrics/block_nesting.rb +4 -3
  274. data/lib/rubocop/cop/metrics/class_length.rb +43 -2
  275. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +38 -5
  276. data/lib/rubocop/cop/metrics/method_length.rb +31 -4
  277. data/lib/rubocop/cop/metrics/module_length.rb +35 -2
  278. data/lib/rubocop/cop/metrics/parameter_lists.rb +4 -8
  279. data/lib/rubocop/cop/metrics/perceived_complexity.rb +9 -11
  280. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +138 -0
  281. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +158 -0
  282. data/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
  283. data/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +37 -0
  284. data/lib/rubocop/cop/migration/department_name.rb +83 -0
  285. data/lib/rubocop/cop/mixin/alignment.rb +12 -6
  286. data/lib/rubocop/cop/mixin/allowed_methods.rb +21 -0
  287. data/lib/rubocop/cop/mixin/annotation_comment.rb +6 -0
  288. data/lib/rubocop/cop/mixin/array_min_size.rb +2 -4
  289. data/lib/rubocop/cop/mixin/array_syntax.rb +1 -1
  290. data/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
  291. data/lib/rubocop/cop/mixin/check_assignment.rb +13 -9
  292. data/lib/rubocop/cop/mixin/check_line_breakable.rb +193 -0
  293. data/lib/rubocop/cop/mixin/code_length.rb +28 -3
  294. data/lib/rubocop/cop/mixin/comments_help.rb +48 -0
  295. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +8 -5
  296. data/lib/rubocop/cop/mixin/configurable_formatting.rb +4 -7
  297. data/lib/rubocop/cop/mixin/configurable_max.rb +4 -2
  298. data/lib/rubocop/cop/mixin/configurable_naming.rb +2 -2
  299. data/lib/rubocop/cop/mixin/configurable_numbering.rb +3 -3
  300. data/lib/rubocop/cop/mixin/def_node.rb +5 -1
  301. data/lib/rubocop/cop/mixin/documentation_comment.rb +13 -7
  302. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +35 -18
  303. data/lib/rubocop/cop/mixin/empty_parameter.rb +5 -2
  304. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +24 -6
  305. data/lib/rubocop/cop/mixin/enforce_superclass.rb +6 -4
  306. data/lib/rubocop/cop/mixin/first_element_line_break.rb +4 -2
  307. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +31 -6
  308. data/lib/rubocop/cop/mixin/{hash_alignment.rb → hash_alignment_styles.rb} +38 -7
  309. data/lib/rubocop/cop/mixin/hash_transform_method.rb +197 -0
  310. data/lib/rubocop/cop/mixin/heredoc.rb +6 -2
  311. data/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  312. data/lib/rubocop/cop/mixin/ignored_pattern.rb +1 -1
  313. data/lib/rubocop/cop/mixin/integer_node.rb +1 -1
  314. data/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  315. data/lib/rubocop/cop/mixin/line_length_help.rb +87 -0
  316. data/lib/rubocop/cop/mixin/match_range.rb +2 -0
  317. data/lib/rubocop/cop/mixin/method_complexity.rb +18 -4
  318. data/lib/rubocop/cop/mixin/method_preference.rb +2 -1
  319. data/lib/rubocop/cop/mixin/min_body_length.rb +1 -1
  320. data/lib/rubocop/cop/mixin/{array_hash_indentation.rb → multiline_element_indentation.rb} +3 -2
  321. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +35 -0
  322. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +42 -13
  323. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +17 -14
  324. data/lib/rubocop/cop/mixin/negative_conditional.rb +3 -3
  325. data/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
  326. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +15 -2
  327. data/lib/rubocop/cop/mixin/parentheses.rb +1 -2
  328. data/lib/rubocop/cop/mixin/percent_array.rb +18 -11
  329. data/lib/rubocop/cop/mixin/percent_literal.rb +3 -65
  330. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +96 -6
  331. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  332. data/lib/rubocop/cop/mixin/range_help.rb +131 -0
  333. data/lib/rubocop/cop/mixin/rational_literal.rb +18 -0
  334. data/lib/rubocop/cop/mixin/rescue_node.rb +13 -4
  335. data/lib/rubocop/cop/mixin/safe_assignment.rb +2 -1
  336. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +13 -11
  337. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +16 -13
  338. data/lib/rubocop/cop/mixin/statement_modifier.rb +48 -18
  339. data/lib/rubocop/cop/mixin/string_literals_help.rb +2 -1
  340. data/lib/rubocop/cop/mixin/surrounding_space.rb +62 -42
  341. data/lib/rubocop/cop/mixin/target_ruby_version.rb +5 -1
  342. data/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  343. data/lib/rubocop/cop/mixin/trailing_comma.rb +96 -46
  344. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +106 -0
  345. data/lib/rubocop/cop/mixin/unused_argument.rb +4 -6
  346. data/lib/rubocop/cop/mixin/visibility_help.rb +38 -0
  347. data/lib/rubocop/cop/naming/accessor_method_name.rb +6 -4
  348. data/lib/rubocop/cop/naming/ascii_identifiers.rb +33 -7
  349. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +7 -6
  350. data/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
  351. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +15 -5
  352. data/lib/rubocop/cop/naming/constant_name.rb +35 -11
  353. data/lib/rubocop/cop/naming/file_name.rb +58 -33
  354. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +3 -3
  355. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +10 -14
  356. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  357. data/lib/rubocop/cop/naming/method_name.rb +41 -2
  358. data/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
  359. data/lib/rubocop/cop/naming/predicate_name.rb +18 -15
  360. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +113 -0
  361. data/lib/rubocop/cop/naming/variable_name.rb +4 -2
  362. data/lib/rubocop/cop/naming/variable_number.rb +3 -3
  363. data/lib/rubocop/cop/offense.rb +64 -13
  364. data/lib/rubocop/cop/registry.rb +118 -14
  365. data/lib/rubocop/cop/security/eval.rb +6 -4
  366. data/lib/rubocop/cop/security/json_load.rb +11 -12
  367. data/lib/rubocop/cop/security/marshal_load.rb +5 -6
  368. data/lib/rubocop/cop/security/open.rb +72 -0
  369. data/lib/rubocop/cop/security/yaml_load.rb +9 -8
  370. data/lib/rubocop/cop/severity.rb +2 -11
  371. data/lib/rubocop/cop/style/access_modifier_declarations.rb +135 -0
  372. data/lib/rubocop/cop/style/accessor_grouping.rb +152 -0
  373. data/lib/rubocop/cop/style/alias.rb +51 -38
  374. data/lib/rubocop/cop/style/and_or.rb +23 -25
  375. data/lib/rubocop/cop/style/array_coercion.rb +67 -0
  376. data/lib/rubocop/cop/style/array_join.rb +10 -11
  377. data/lib/rubocop/cop/style/ascii_comments.rb +7 -4
  378. data/lib/rubocop/cop/style/attr.rb +25 -14
  379. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +8 -8
  380. data/lib/rubocop/cop/style/bare_percent_literals.rb +14 -16
  381. data/lib/rubocop/cop/style/begin_block.rb +9 -3
  382. data/lib/rubocop/cop/style/bisected_attr_accessor.rb +141 -0
  383. data/lib/rubocop/cop/style/block_comments.rb +25 -19
  384. data/lib/rubocop/cop/style/block_delimiters.rb +131 -37
  385. data/lib/rubocop/cop/style/case_equality.rb +55 -5
  386. data/lib/rubocop/cop/style/case_like_if.rb +252 -0
  387. data/lib/rubocop/cop/style/character_literal.rb +3 -3
  388. data/lib/rubocop/cop/style/class_and_module_children.rb +43 -36
  389. data/lib/rubocop/cop/style/class_check.rb +7 -12
  390. data/lib/rubocop/cop/style/class_equality_comparison.rb +64 -0
  391. data/lib/rubocop/cop/style/class_methods.rb +19 -31
  392. data/lib/rubocop/cop/style/class_methods_definitions.rb +157 -0
  393. data/lib/rubocop/cop/style/class_vars.rb +47 -7
  394. data/lib/rubocop/cop/style/collection_methods.rb +40 -18
  395. data/lib/rubocop/cop/style/colon_method_call.rb +11 -13
  396. data/lib/rubocop/cop/style/colon_method_definition.rb +7 -6
  397. data/lib/rubocop/cop/style/combinable_loops.rb +91 -0
  398. data/lib/rubocop/cop/style/command_literal.rb +41 -34
  399. data/lib/rubocop/cop/style/comment_annotation.rb +35 -22
  400. data/lib/rubocop/cop/style/commented_keyword.rb +24 -33
  401. data/lib/rubocop/cop/style/conditional_assignment.rb +108 -138
  402. data/lib/rubocop/cop/style/constant_visibility.rb +78 -0
  403. data/lib/rubocop/cop/style/copyright.rb +39 -28
  404. data/lib/rubocop/cop/style/date_time.rb +55 -11
  405. data/lib/rubocop/cop/style/def_with_parentheses.rb +9 -11
  406. data/lib/rubocop/cop/style/dir.rb +11 -13
  407. data/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +47 -0
  408. data/lib/rubocop/cop/style/documentation.rb +62 -23
  409. data/lib/rubocop/cop/style/documentation_method.rb +52 -3
  410. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +52 -0
  411. data/lib/rubocop/cop/style/double_negation.rb +46 -8
  412. data/lib/rubocop/cop/style/each_for_simple_loop.rb +7 -10
  413. data/lib/rubocop/cop/style/each_with_object.rb +30 -19
  414. data/lib/rubocop/cop/style/empty_block_parameter.rb +12 -12
  415. data/lib/rubocop/cop/style/empty_case_condition.rb +36 -12
  416. data/lib/rubocop/cop/style/empty_else.rb +28 -24
  417. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +13 -12
  418. data/lib/rubocop/cop/style/empty_literal.rb +34 -31
  419. data/lib/rubocop/cop/style/empty_method.rb +14 -18
  420. data/lib/rubocop/cop/style/encoding.rb +17 -14
  421. data/lib/rubocop/cop/style/end_block.rb +15 -3
  422. data/lib/rubocop/cop/style/eval_with_location.rb +15 -13
  423. data/lib/rubocop/cop/style/even_odd.rb +13 -16
  424. data/lib/rubocop/cop/style/expand_path_arguments.rb +195 -0
  425. data/lib/rubocop/cop/style/explicit_block_argument.rb +106 -0
  426. data/lib/rubocop/cop/style/exponential_notation.rb +117 -0
  427. data/lib/rubocop/cop/style/float_division.rb +93 -0
  428. data/lib/rubocop/cop/style/for.rb +48 -21
  429. data/lib/rubocop/cop/style/format_string.rb +52 -49
  430. data/lib/rubocop/cop/style/format_string_token.rb +32 -77
  431. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +131 -62
  432. data/lib/rubocop/cop/style/global_std_stream.rb +65 -0
  433. data/lib/rubocop/cop/style/global_vars.rb +5 -5
  434. data/lib/rubocop/cop/style/guard_clause.rb +69 -16
  435. data/lib/rubocop/cop/style/hash_as_last_array_item.rb +88 -0
  436. data/lib/rubocop/cop/style/hash_each_methods.rb +86 -0
  437. data/lib/rubocop/cop/style/hash_like_case.rb +76 -0
  438. data/lib/rubocop/cop/style/hash_syntax.rb +39 -31
  439. data/lib/rubocop/cop/style/hash_transform_keys.rb +91 -0
  440. data/lib/rubocop/cop/style/hash_transform_values.rb +88 -0
  441. data/lib/rubocop/cop/style/identical_conditional_branches.rb +11 -15
  442. data/lib/rubocop/cop/style/if_inside_else.rb +46 -4
  443. data/lib/rubocop/cop/style/if_unless_modifier.rb +114 -46
  444. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +12 -4
  445. data/lib/rubocop/cop/style/if_with_semicolon.rb +18 -4
  446. data/lib/rubocop/cop/style/implicit_runtime_error.rb +3 -2
  447. data/lib/rubocop/cop/style/infinite_loop.rb +64 -27
  448. data/lib/rubocop/cop/style/inline_comment.rb +6 -4
  449. data/lib/rubocop/cop/style/inverse_methods.rb +78 -40
  450. data/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  451. data/lib/rubocop/cop/style/keyword_parameters_order.rb +53 -0
  452. data/lib/rubocop/cop/style/lambda.rb +15 -99
  453. data/lib/rubocop/cop/style/lambda_call.rb +17 -34
  454. data/lib/rubocop/cop/style/line_end_concatenation.rb +37 -28
  455. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +136 -35
  456. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +174 -0
  457. data/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +48 -0
  458. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +17 -18
  459. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +17 -5
  460. data/lib/rubocop/cop/style/method_def_parentheses.rb +27 -27
  461. data/lib/rubocop/cop/style/min_max.rb +10 -14
  462. data/lib/rubocop/cop/style/missing_else.rb +87 -31
  463. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +53 -0
  464. data/lib/rubocop/cop/style/mixin_grouping.rb +42 -42
  465. data/lib/rubocop/cop/style/mixin_usage.rb +16 -27
  466. data/lib/rubocop/cop/style/module_function.rb +85 -18
  467. data/lib/rubocop/cop/style/multiline_block_chain.rb +16 -5
  468. data/lib/rubocop/cop/style/multiline_if_modifier.rb +5 -12
  469. data/lib/rubocop/cop/style/multiline_if_then.rb +8 -13
  470. data/lib/rubocop/cop/style/multiline_memoization.rb +17 -14
  471. data/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  472. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +32 -10
  473. data/lib/rubocop/cop/style/multiline_when_then.rb +73 -0
  474. data/lib/rubocop/cop/style/multiple_comparison.rb +20 -5
  475. data/lib/rubocop/cop/style/mutable_constant.rb +130 -19
  476. data/lib/rubocop/cop/style/negated_if.rb +10 -10
  477. data/lib/rubocop/cop/style/negated_unless.rb +89 -0
  478. data/lib/rubocop/cop/style/negated_while.rb +25 -15
  479. data/lib/rubocop/cop/style/nested_modifier.rb +37 -20
  480. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +26 -24
  481. data/lib/rubocop/cop/style/nested_ternary_operator.rb +41 -3
  482. data/lib/rubocop/cop/style/next.rb +40 -43
  483. data/lib/rubocop/cop/style/nil_comparison.rb +51 -9
  484. data/lib/rubocop/cop/style/non_nil_check.rb +55 -35
  485. data/lib/rubocop/cop/style/not.rb +26 -29
  486. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +43 -25
  487. data/lib/rubocop/cop/style/numeric_literals.rb +28 -15
  488. data/lib/rubocop/cop/style/numeric_predicate.rb +19 -27
  489. data/lib/rubocop/cop/style/one_line_conditional.rb +95 -27
  490. data/lib/rubocop/cop/style/option_hash.rb +14 -3
  491. data/lib/rubocop/cop/style/optional_arguments.rb +4 -7
  492. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +53 -0
  493. data/lib/rubocop/cop/style/or_assignment.rb +27 -16
  494. data/lib/rubocop/cop/style/parallel_assignment.rb +20 -20
  495. data/lib/rubocop/cop/style/parentheses_around_condition.rb +50 -10
  496. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +26 -26
  497. data/lib/rubocop/cop/style/percent_q_literals.rb +10 -12
  498. data/lib/rubocop/cop/style/perl_backrefs.rb +9 -11
  499. data/lib/rubocop/cop/style/preferred_hash_methods.rb +12 -14
  500. data/lib/rubocop/cop/style/proc.rb +9 -9
  501. data/lib/rubocop/cop/style/raise_args.rb +30 -30
  502. data/lib/rubocop/cop/style/random_with_offset.rb +65 -72
  503. data/lib/rubocop/cop/style/redundant_assignment.rb +107 -0
  504. data/lib/rubocop/cop/style/redundant_begin.rb +69 -10
  505. data/lib/rubocop/cop/style/{unneeded_capital_w.rb → redundant_capital_w.rb} +7 -10
  506. data/lib/rubocop/cop/style/redundant_condition.rb +139 -0
  507. data/lib/rubocop/cop/style/redundant_conditional.rb +13 -12
  508. data/lib/rubocop/cop/style/redundant_exception.rb +28 -17
  509. data/lib/rubocop/cop/style/redundant_fetch_block.rb +113 -0
  510. data/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +51 -0
  511. data/lib/rubocop/cop/style/redundant_freeze.rb +29 -9
  512. data/lib/rubocop/cop/style/{unneeded_interpolation.rb → redundant_interpolation.rb} +34 -28
  513. data/lib/rubocop/cop/style/redundant_parentheses.rb +73 -39
  514. data/lib/rubocop/cop/style/{unneeded_percent_q.rb → redundant_percent_q.rb} +36 -23
  515. data/lib/rubocop/cop/style/redundant_regexp_character_class.rb +98 -0
  516. data/lib/rubocop/cop/style/redundant_regexp_escape.rb +105 -0
  517. data/lib/rubocop/cop/style/redundant_return.rb +90 -55
  518. data/lib/rubocop/cop/style/redundant_self.rb +39 -25
  519. data/lib/rubocop/cop/style/redundant_self_assignment.rb +116 -0
  520. data/lib/rubocop/cop/style/redundant_sort.rb +162 -0
  521. data/lib/rubocop/cop/{performance → style}/redundant_sort_by.rb +10 -12
  522. data/lib/rubocop/cop/style/regexp_literal.rb +76 -34
  523. data/lib/rubocop/cop/style/rescue_modifier.rb +55 -10
  524. data/lib/rubocop/cop/style/rescue_standard_error.rb +27 -21
  525. data/lib/rubocop/cop/style/return_nil.rb +9 -9
  526. data/lib/rubocop/cop/style/safe_navigation.rb +130 -50
  527. data/lib/rubocop/cop/{performance → style}/sample.rb +28 -26
  528. data/lib/rubocop/cop/style/self_assignment.rb +27 -23
  529. data/lib/rubocop/cop/style/semicolon.rb +32 -14
  530. data/lib/rubocop/cop/style/send.rb +6 -6
  531. data/lib/rubocop/cop/style/signal_exception.rb +29 -22
  532. data/lib/rubocop/cop/style/single_argument_dig.rb +55 -0
  533. data/lib/rubocop/cop/style/single_line_block_params.rb +25 -3
  534. data/lib/rubocop/cop/style/single_line_methods.rb +31 -32
  535. data/lib/rubocop/cop/style/slicing_with_range.rb +37 -0
  536. data/lib/rubocop/cop/style/sole_nested_conditional.rb +66 -0
  537. data/lib/rubocop/cop/style/special_global_vars.rb +74 -33
  538. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +21 -27
  539. data/lib/rubocop/cop/style/stderr_puts.rb +17 -11
  540. data/lib/rubocop/cop/style/string_concatenation.rb +106 -0
  541. data/lib/rubocop/cop/style/string_hash_keys.rb +22 -9
  542. data/lib/rubocop/cop/style/string_literals.rb +3 -3
  543. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +1 -1
  544. data/lib/rubocop/cop/style/string_methods.rb +8 -17
  545. data/lib/rubocop/cop/style/strip.rb +41 -0
  546. data/lib/rubocop/cop/style/struct_inheritance.rb +34 -9
  547. data/lib/rubocop/cop/style/symbol_array.rb +47 -20
  548. data/lib/rubocop/cop/style/symbol_literal.rb +7 -9
  549. data/lib/rubocop/cop/style/symbol_proc.rb +32 -59
  550. data/lib/rubocop/cop/style/ternary_parentheses.rb +60 -35
  551. data/lib/rubocop/cop/style/trailing_body_on_class.rb +40 -0
  552. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +12 -62
  553. data/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
  554. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +49 -25
  555. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
  556. data/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +90 -0
  557. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
  558. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +12 -39
  559. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +20 -23
  560. data/lib/rubocop/cop/style/trivial_accessors.rb +42 -37
  561. data/lib/rubocop/cop/style/unless_else.rb +10 -12
  562. data/lib/rubocop/cop/style/unpack_first.rb +58 -0
  563. data/lib/rubocop/cop/style/variable_interpolation.rb +12 -25
  564. data/lib/rubocop/cop/style/when_then.rb +6 -8
  565. data/lib/rubocop/cop/style/while_until_do.rb +7 -17
  566. data/lib/rubocop/cop/style/while_until_modifier.rb +9 -23
  567. data/lib/rubocop/cop/style/word_array.rb +18 -28
  568. data/lib/rubocop/cop/style/yoda_condition.rb +84 -29
  569. data/lib/rubocop/cop/style/zero_length_predicate.rb +34 -24
  570. data/lib/rubocop/cop/team.rb +160 -91
  571. data/lib/rubocop/cop/util.rb +38 -216
  572. data/lib/rubocop/cop/utils/format_string.rb +135 -0
  573. data/lib/rubocop/cop/variable_force.rb +40 -35
  574. data/lib/rubocop/cop/variable_force/assignment.rb +5 -0
  575. data/lib/rubocop/cop/variable_force/branch.rb +6 -7
  576. data/lib/rubocop/cop/variable_force/branchable.rb +2 -0
  577. data/lib/rubocop/cop/variable_force/scope.rb +7 -0
  578. data/lib/rubocop/cop/variable_force/variable.rb +23 -10
  579. data/lib/rubocop/cop/variable_force/variable_table.rb +4 -3
  580. data/lib/rubocop/cops_documentation_generator.rb +284 -0
  581. data/lib/rubocop/core_ext/string.rb +23 -0
  582. data/lib/rubocop/directive_comment.rb +32 -0
  583. data/lib/rubocop/error.rb +24 -0
  584. data/lib/rubocop/ext/processed_source.rb +18 -0
  585. data/lib/rubocop/ext/regexp_node.rb +62 -0
  586. data/lib/rubocop/file_finder.rb +43 -0
  587. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
  588. data/lib/rubocop/formatter/base_formatter.rb +3 -7
  589. data/lib/rubocop/formatter/clang_style_formatter.rb +9 -6
  590. data/lib/rubocop/formatter/disabled_config_formatter.rb +69 -35
  591. data/lib/rubocop/formatter/emacs_style_formatter.rb +22 -9
  592. data/lib/rubocop/formatter/file_list_formatter.rb +2 -1
  593. data/lib/rubocop/formatter/formatter_set.rb +18 -17
  594. data/lib/rubocop/formatter/fuubar_style_formatter.rb +2 -2
  595. data/lib/rubocop/formatter/html_formatter.rb +15 -6
  596. data/lib/rubocop/formatter/json_formatter.rb +14 -13
  597. data/lib/rubocop/formatter/junit_formatter.rb +84 -0
  598. data/lib/rubocop/formatter/offense_count_formatter.rb +17 -0
  599. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  600. data/lib/rubocop/formatter/progress_formatter.rb +3 -2
  601. data/lib/rubocop/formatter/quiet_formatter.rb +1 -1
  602. data/lib/rubocop/formatter/simple_text_formatter.rb +54 -11
  603. data/lib/rubocop/formatter/tap_formatter.rb +17 -6
  604. data/lib/rubocop/magic_comment.rb +15 -11
  605. data/lib/rubocop/name_similarity.rb +18 -10
  606. data/lib/rubocop/options.rb +267 -139
  607. data/lib/rubocop/path_util.rb +36 -17
  608. data/lib/rubocop/platform.rb +1 -1
  609. data/lib/rubocop/rake_task.rb +8 -9
  610. data/lib/rubocop/remote_config.rb +24 -9
  611. data/lib/rubocop/result_cache.rb +86 -31
  612. data/lib/rubocop/rspec/cop_helper.rb +14 -38
  613. data/lib/rubocop/rspec/expect_offense.rb +168 -14
  614. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +1 -5
  615. data/lib/rubocop/rspec/shared_contexts.rb +93 -47
  616. data/lib/rubocop/rspec/support.rb +5 -1
  617. data/lib/rubocop/runner.rb +146 -77
  618. data/lib/rubocop/string_interpreter.rb +11 -8
  619. data/lib/rubocop/target_finder.rb +94 -95
  620. data/lib/rubocop/target_ruby.rb +160 -0
  621. data/lib/rubocop/version.rb +15 -5
  622. data/lib/rubocop/yaml_duplication_checker.rb +40 -0
  623. metadata +265 -192
  624. data/config/disabled.yml +0 -128
  625. data/config/enabled.yml +0 -1989
  626. data/lib/rubocop/ast/builder.rb +0 -72
  627. data/lib/rubocop/ast/node.rb +0 -634
  628. data/lib/rubocop/ast/node/and_node.rb +0 -37
  629. data/lib/rubocop/ast/node/args_node.rb +0 -29
  630. data/lib/rubocop/ast/node/array_node.rb +0 -57
  631. data/lib/rubocop/ast/node/block_node.rb +0 -116
  632. data/lib/rubocop/ast/node/case_node.rb +0 -64
  633. data/lib/rubocop/ast/node/def_node.rb +0 -71
  634. data/lib/rubocop/ast/node/ensure_node.rb +0 -25
  635. data/lib/rubocop/ast/node/for_node.rb +0 -61
  636. data/lib/rubocop/ast/node/hash_node.rb +0 -109
  637. data/lib/rubocop/ast/node/if_node.rb +0 -146
  638. data/lib/rubocop/ast/node/keyword_splat_node.rb +0 -45
  639. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +0 -16
  640. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +0 -23
  641. data/lib/rubocop/ast/node/mixin/collection_node.rb +0 -15
  642. data/lib/rubocop/ast/node/mixin/conditional_node.rb +0 -45
  643. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +0 -125
  644. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +0 -174
  645. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +0 -89
  646. data/lib/rubocop/ast/node/mixin/modifier_node.rb +0 -17
  647. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +0 -61
  648. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +0 -35
  649. data/lib/rubocop/ast/node/or_node.rb +0 -37
  650. data/lib/rubocop/ast/node/pair_node.rb +0 -64
  651. data/lib/rubocop/ast/node/regexp_node.rb +0 -35
  652. data/lib/rubocop/ast/node/resbody_node.rb +0 -25
  653. data/lib/rubocop/ast/node/send_node.rb +0 -45
  654. data/lib/rubocop/ast/node/str_node.rb +0 -14
  655. data/lib/rubocop/ast/node/super_node.rb +0 -21
  656. data/lib/rubocop/ast/node/symbol_node.rb +0 -20
  657. data/lib/rubocop/ast/node/until_node.rb +0 -43
  658. data/lib/rubocop/ast/node/when_node.rb +0 -61
  659. data/lib/rubocop/ast/node/while_node.rb +0 -43
  660. data/lib/rubocop/ast/node/yield_node.rb +0 -21
  661. data/lib/rubocop/ast/sexp.rb +0 -16
  662. data/lib/rubocop/ast/traversal.rb +0 -171
  663. data/lib/rubocop/cop/layout/align_array.rb +0 -39
  664. data/lib/rubocop/cop/layout/align_hash.rb +0 -235
  665. data/lib/rubocop/cop/layout/indent_heredoc.rb +0 -208
  666. data/lib/rubocop/cop/layout/tab.rb +0 -60
  667. data/lib/rubocop/cop/layout/trailing_blank_lines.rb +0 -80
  668. data/lib/rubocop/cop/lint/end_in_method.rb +0 -40
  669. data/lib/rubocop/cop/lint/handle_exceptions.rb +0 -56
  670. data/lib/rubocop/cop/lint/useless_comparison.rb +0 -28
  671. data/lib/rubocop/cop/metrics/line_length.rb +0 -171
  672. data/lib/rubocop/cop/mixin/classish_length.rb +0 -36
  673. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +0 -37
  674. data/lib/rubocop/cop/mixin/safe_mode.rb +0 -22
  675. data/lib/rubocop/cop/mixin/target_rails_version.rb +0 -16
  676. data/lib/rubocop/cop/mixin/too_many_lines.rb +0 -39
  677. data/lib/rubocop/cop/performance/caller.rb +0 -69
  678. data/lib/rubocop/cop/performance/case_when_splat.rb +0 -172
  679. data/lib/rubocop/cop/performance/casecmp.rb +0 -108
  680. data/lib/rubocop/cop/performance/compare_with_block.rb +0 -117
  681. data/lib/rubocop/cop/performance/count.rb +0 -101
  682. data/lib/rubocop/cop/performance/detect.rb +0 -110
  683. data/lib/rubocop/cop/performance/double_start_end_with.rb +0 -94
  684. data/lib/rubocop/cop/performance/end_with.rb +0 -55
  685. data/lib/rubocop/cop/performance/fixed_size.rb +0 -56
  686. data/lib/rubocop/cop/performance/flat_map.rb +0 -76
  687. data/lib/rubocop/cop/performance/hash_each_methods.rb +0 -129
  688. data/lib/rubocop/cop/performance/lstrip_rstrip.rb +0 -44
  689. data/lib/rubocop/cop/performance/range_include.rb +0 -41
  690. data/lib/rubocop/cop/performance/redundant_block_call.rb +0 -93
  691. data/lib/rubocop/cop/performance/redundant_match.rb +0 -56
  692. data/lib/rubocop/cop/performance/redundant_merge.rb +0 -169
  693. data/lib/rubocop/cop/performance/regexp_match.rb +0 -224
  694. data/lib/rubocop/cop/performance/reverse_each.rb +0 -40
  695. data/lib/rubocop/cop/performance/size.rb +0 -71
  696. data/lib/rubocop/cop/performance/start_with.rb +0 -58
  697. data/lib/rubocop/cop/performance/string_replacement.rb +0 -170
  698. data/lib/rubocop/cop/performance/times_map.rb +0 -71
  699. data/lib/rubocop/cop/performance/unfreeze_string.rb +0 -50
  700. data/lib/rubocop/cop/performance/uri_default_parser.rb +0 -47
  701. data/lib/rubocop/cop/rails/action_filter.rb +0 -117
  702. data/lib/rubocop/cop/rails/active_support_aliases.rb +0 -68
  703. data/lib/rubocop/cop/rails/application_job.rb +0 -40
  704. data/lib/rubocop/cop/rails/application_record.rb +0 -40
  705. data/lib/rubocop/cop/rails/blank.rb +0 -142
  706. data/lib/rubocop/cop/rails/create_table_with_timestamps.rb +0 -82
  707. data/lib/rubocop/cop/rails/date.rb +0 -136
  708. data/lib/rubocop/cop/rails/delegate.rb +0 -130
  709. data/lib/rubocop/cop/rails/delegate_allow_blank.rb +0 -51
  710. data/lib/rubocop/cop/rails/dynamic_find_by.rb +0 -82
  711. data/lib/rubocop/cop/rails/enum_uniqueness.rb +0 -45
  712. data/lib/rubocop/cop/rails/environment_comparison.rb +0 -66
  713. data/lib/rubocop/cop/rails/exit.rb +0 -68
  714. data/lib/rubocop/cop/rails/file_path.rb +0 -72
  715. data/lib/rubocop/cop/rails/find_by.rb +0 -52
  716. data/lib/rubocop/cop/rails/find_each.rb +0 -47
  717. data/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +0 -25
  718. data/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +0 -84
  719. data/lib/rubocop/cop/rails/http_positional_arguments.rb +0 -102
  720. data/lib/rubocop/cop/rails/inverse_of.rb +0 -218
  721. data/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +0 -112
  722. data/lib/rubocop/cop/rails/not_null_column.rb +0 -67
  723. data/lib/rubocop/cop/rails/output.rb +0 -32
  724. data/lib/rubocop/cop/rails/output_safety.rb +0 -93
  725. data/lib/rubocop/cop/rails/pluralization_grammar.rb +0 -107
  726. data/lib/rubocop/cop/rails/presence.rb +0 -118
  727. data/lib/rubocop/cop/rails/present.rb +0 -143
  728. data/lib/rubocop/cop/rails/read_write_attribute.rb +0 -65
  729. data/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +0 -133
  730. data/lib/rubocop/cop/rails/relative_date_constant.rb +0 -88
  731. data/lib/rubocop/cop/rails/request_referer.rb +0 -55
  732. data/lib/rubocop/cop/rails/reversible_migration.rb +0 -281
  733. data/lib/rubocop/cop/rails/safe_navigation.rb +0 -90
  734. data/lib/rubocop/cop/rails/save_bang.rb +0 -162
  735. data/lib/rubocop/cop/rails/scope_args.rb +0 -29
  736. data/lib/rubocop/cop/rails/skips_model_validations.rb +0 -70
  737. data/lib/rubocop/cop/rails/time_zone.rb +0 -198
  738. data/lib/rubocop/cop/rails/uniq_before_pluck.rb +0 -95
  739. data/lib/rubocop/cop/rails/unknown_env.rb +0 -63
  740. data/lib/rubocop/cop/rails/validation.rb +0 -64
  741. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +0 -202
  742. data/lib/rubocop/cop/style/method_missing.rb +0 -68
  743. data/lib/rubocop/cop/style/trailing_comma_in_literal.rb +0 -75
  744. data/lib/rubocop/formatter/disabled_lines_formatter.rb +0 -57
  745. data/lib/rubocop/node_pattern.rb +0 -560
  746. data/lib/rubocop/processed_source.rb +0 -150
  747. data/lib/rubocop/rspec/shared_examples.rb +0 -92
  748. data/lib/rubocop/string_util.rb +0 -158
  749. data/lib/rubocop/token.rb +0 -103
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # A subcommand in the CLI.
7
+ # @api private
8
+ class Base
9
+ attr_reader :env
10
+
11
+ @subclasses = []
12
+
13
+ class << self
14
+ attr_accessor :command_name
15
+
16
+ def inherited(subclass)
17
+ super
18
+ @subclasses << subclass
19
+ end
20
+
21
+ def by_command_name(name)
22
+ @subclasses.detect { |s| s.command_name == name }
23
+ end
24
+ end
25
+
26
+ def initialize(env)
27
+ @env = env
28
+ @options = env.options
29
+ @config_store = env.config_store
30
+ @paths = env.paths
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,85 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # Run all the selected cops and report the result.
7
+ # @api private
8
+ class ExecuteRunner < Base
9
+ include Formatter::TextUtil
10
+
11
+ # Combination of short and long formatter names.
12
+ INTEGRATION_FORMATTERS = %w[h html j json ju junit].freeze
13
+
14
+ self.command_name = :execute_runner
15
+
16
+ def run
17
+ execute_runner(@paths)
18
+ end
19
+
20
+ private
21
+
22
+ def execute_runner(paths)
23
+ runner = Runner.new(@options, @config_store)
24
+
25
+ all_passed = runner.run(paths)
26
+ display_warning_summary(runner.warnings)
27
+ display_error_summary(runner.errors)
28
+ maybe_print_corrected_source
29
+
30
+ all_pass_or_excluded = all_passed || @options[:auto_gen_config]
31
+
32
+ if runner.aborting?
33
+ STATUS_INTERRUPTED
34
+ elsif all_pass_or_excluded && runner.errors.empty?
35
+ STATUS_SUCCESS
36
+ else
37
+ STATUS_OFFENSES
38
+ end
39
+ end
40
+
41
+ def display_warning_summary(warnings)
42
+ return if warnings.empty?
43
+
44
+ warn Rainbow("\n#{pluralize(warnings.size, 'warning')}:").yellow
45
+
46
+ warnings.each { |warning| warn warning }
47
+ end
48
+
49
+ def display_error_summary(errors)
50
+ return if errors.empty?
51
+
52
+ warn Rainbow("\n#{pluralize(errors.size, 'error')} occurred:").red
53
+
54
+ errors.each { |error| warn error }
55
+
56
+ warn <<~WARNING
57
+ Errors are usually caused by RuboCop bugs.
58
+ Please, report your problems to RuboCop's issue tracker.
59
+ #{Gem.loaded_specs['rubocop'].metadata['bug_tracker_uri']}
60
+
61
+ Mention the following information in the issue report:
62
+ #{RuboCop::Version.version(debug: true)}
63
+ WARNING
64
+ end
65
+
66
+ def maybe_print_corrected_source
67
+ # Integration tools (like RubyMine) expect to have only the JSON result
68
+ # when specifying JSON format. Similar HTML and JUnit are targeted as well.
69
+ # See: https://github.com/rubocop-hq/rubocop/issues/8673
70
+ return if INTEGRATION_FORMATTERS.include?(@options[:format])
71
+
72
+ # If we are asked to autocorrect source code read from stdin, the only
73
+ # reasonable place to write it is to stdout
74
+ # Unfortunately, we also write other information to stdout
75
+ # So a delimiter is needed for tools to easily identify where the
76
+ # autocorrected source begins
77
+ return unless @options[:stdin] && @options[:auto_correct]
78
+
79
+ puts '=' * 20
80
+ print @options[:stdin]
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # Generate a .rubocop.yml file in the current directory.
7
+ # @api private
8
+ class InitDotfile < Base
9
+ DOTFILE = ConfigLoader::DOTFILE
10
+
11
+ self.command_name = :init
12
+
13
+ def run
14
+ path = File.expand_path(DOTFILE)
15
+
16
+ if File.exist?(DOTFILE)
17
+ warn Rainbow("#{DOTFILE} already exists at #{path}").red
18
+
19
+ STATUS_ERROR
20
+ else
21
+ description = <<~DESC
22
+ # The behavior of RuboCop can be controlled via the .rubocop.yml
23
+ # configuration file. It makes it possible to enable/disable
24
+ # certain cops (checks) and to alter their behavior if they accept
25
+ # any parameters. The file can be placed either in your home
26
+ # directory or in some project directory.
27
+ #
28
+ # RuboCop will start looking for the configuration file in the directory
29
+ # where the inspected file is and continue its way up to the root directory.
30
+ #
31
+ # See https://docs.rubocop.org/rubocop/configuration
32
+ DESC
33
+
34
+ File.open(DOTFILE, 'w') do |f|
35
+ f.write(description)
36
+ end
37
+
38
+ puts "Writing new #{DOTFILE} to #{path}"
39
+
40
+ STATUS_SUCCESS
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,77 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # Shows the given cops, or all cops by default, and their configurations
7
+ # for the current directory.
8
+ # @api private
9
+ class ShowCops < Base
10
+ self.command_name = :show_cops
11
+
12
+ def initialize(env)
13
+ super
14
+
15
+ # Load the configs so the require()s are done for custom cops
16
+ @config = @config_store.for(Dir.pwd)
17
+ end
18
+
19
+ def run
20
+ print_available_cops
21
+ end
22
+
23
+ private
24
+
25
+ def print_available_cops
26
+ registry = Cop::Registry.global
27
+ show_all = @options[:show_cops].empty?
28
+
29
+ if show_all
30
+ puts "# Available cops (#{registry.length}) " \
31
+ "+ config for #{Dir.pwd}: "
32
+ end
33
+
34
+ registry.departments.sort!.each do |department|
35
+ print_cops_of_department(registry, department, show_all)
36
+ end
37
+ end
38
+
39
+ def print_cops_of_department(registry, department, show_all)
40
+ selected_cops = if show_all
41
+ cops_of_department(registry, department)
42
+ else
43
+ selected_cops_of_department(registry, department)
44
+ end
45
+
46
+ puts "# Department '#{department}' (#{selected_cops.length}):" if show_all
47
+
48
+ print_cop_details(selected_cops)
49
+ end
50
+
51
+ def print_cop_details(cops)
52
+ cops.each do |cop|
53
+ puts '# Supports --auto-correct' if cop.support_autocorrect?
54
+ puts "#{cop.cop_name}:"
55
+ puts config_lines(cop)
56
+ puts
57
+ end
58
+ end
59
+
60
+ def selected_cops_of_department(cops, department)
61
+ cops_of_department(cops, department).select do |cop|
62
+ @options[:show_cops].include?(cop.cop_name)
63
+ end
64
+ end
65
+
66
+ def cops_of_department(cops, department)
67
+ cops.with_department(department).sort!
68
+ end
69
+
70
+ def config_lines(cop)
71
+ cnf = @config.for_cop(cop)
72
+ cnf.to_yaml.lines.to_a.drop(1).map { |line| " #{line}" }
73
+ end
74
+ end
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ module Command
6
+ # Display version.
7
+ # @api private
8
+ class Version < Base
9
+ self.command_name = :version
10
+
11
+ def run
12
+ puts RuboCop::Version.version(debug: false) if @options[:version]
13
+ puts RuboCop::Version.version(debug: true) if @options[:verbose_version]
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ class CLI
5
+ # Execution environment for a CLI command.
6
+ # @api private
7
+ class Environment
8
+ attr_reader :options, :config_store, :paths
9
+
10
+ def initialize(options, config_store, paths)
11
+ @options = options
12
+ @config_store = config_store
13
+ @paths = paths
14
+ end
15
+
16
+ # Run a command in this environment.
17
+ def run(name)
18
+ Command.run(self, name)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -4,14 +4,20 @@ module RuboCop
4
4
  # This class parses the special `rubocop:disable` comments in a source
5
5
  # and provides a way to check if each cop is enabled at arbitrary line.
6
6
  class CommentConfig
7
- UNNEEDED_DISABLE = 'Lint/UnneededDisable'.freeze
7
+ # @api private
8
+ REDUNDANT_DISABLE = 'Lint/RedundantCopDisableDirective'
8
9
 
9
- COP_NAME_PATTERN = '([A-Z]\w+/)?(?:[A-Z]\w+)'.freeze
10
- COP_NAMES_PATTERN = "(?:#{COP_NAME_PATTERN} , )*#{COP_NAME_PATTERN}".freeze
11
- COPS_PATTERN = "(all|#{COP_NAMES_PATTERN})".freeze
10
+ # @api private
11
+ COP_NAME_PATTERN = '([A-Z]\w+/)?(?:[A-Z]\w+)'
12
+ # @api private
13
+ COP_NAMES_PATTERN = "(?:#{COP_NAME_PATTERN} , )*#{COP_NAME_PATTERN}"
14
+ # @api private
15
+ COPS_PATTERN = "(all|#{COP_NAMES_PATTERN})"
12
16
 
17
+ # @api private
13
18
  COMMENT_DIRECTIVE_REGEXP = Regexp.new(
14
- ('# rubocop : ((?:dis|en)able)\b ' + COPS_PATTERN).gsub(' ', '\s*')
19
+ "# rubocop : ((?:disable|enable|todo))\\b #{COPS_PATTERN}"
20
+ .gsub(' ', '\s*')
15
21
  )
16
22
 
17
23
  CopAnalysis = Struct.new(:line_ranges, :start_line_number)
@@ -34,9 +40,30 @@ module RuboCop
34
40
  @cop_disabled_line_ranges ||= analyze
35
41
  end
36
42
 
43
+ def extra_enabled_comments
44
+ extra_enabled_comments_with_names(
45
+ extras: Hash.new { |h, k| h[k] = [] },
46
+ names: Hash.new(0)
47
+ )
48
+ end
49
+
37
50
  private
38
51
 
39
- def analyze
52
+ def extra_enabled_comments_with_names(extras:, names:)
53
+ each_directive do |comment, cop_names, disabled|
54
+ next unless comment_only_line?(comment.loc.expression.line)
55
+
56
+ if !disabled && enable_all?(comment)
57
+ handle_enable_all(names, extras, comment)
58
+ else
59
+ handle_switch(cop_names, names, disabled, extras, comment)
60
+ end
61
+ end
62
+
63
+ extras
64
+ end
65
+
66
+ def analyze # rubocop:todo Metrics/AbcSize
40
67
  analyses = Hash.new { |hash, key| hash[key] = CopAnalysis.new([], nil) }
41
68
 
42
69
  each_mentioned_cop do |cop_name, disabled, line, single_line|
@@ -94,7 +121,8 @@ module RuboCop
94
121
  def each_mentioned_cop
95
122
  each_directive do |comment, cop_names, disabled|
96
123
  comment_line_number = comment.loc.expression.line
97
- single_line = !comment_only_line?(comment_line_number)
124
+ single_line = !comment_only_line?(comment_line_number) ||
125
+ directive_on_comment_line?(comment)
98
126
 
99
127
  cop_names.each do |cop_name|
100
128
  yield qualified_cop_name(cop_name), disabled, comment_line_number,
@@ -103,9 +131,11 @@ module RuboCop
103
131
  end
104
132
  end
105
133
 
106
- def each_directive
107
- return if processed_source.comments.nil?
134
+ def directive_on_comment_line?(comment)
135
+ comment.text[1..-1].match?(COMMENT_DIRECTIVE_REGEXP)
136
+ end
108
137
 
138
+ def each_directive
109
139
  processed_source.comments.each do |comment|
110
140
  directive = directive_parts(comment)
111
141
  next unless directive
@@ -123,17 +153,17 @@ module RuboCop
123
153
  cop_names =
124
154
  cops_string == 'all' ? all_cop_names : cops_string.split(/,\s*/)
125
155
 
126
- disabled = (switch == 'disable')
156
+ disabled = %w[disable todo].include?(switch)
127
157
 
128
158
  [cop_names, disabled]
129
159
  end
130
160
 
131
161
  def qualified_cop_name(cop_name)
132
- Cop::Cop.qualified_cop_name(cop_name.strip, processed_source.buffer.name)
162
+ Cop::Registry.qualified_cop_name(cop_name.strip, processed_source.file_path)
133
163
  end
134
164
 
135
165
  def all_cop_names
136
- @all_cop_names ||= Cop::Cop.registry.names - [UNNEEDED_DISABLE]
166
+ @all_cop_names ||= Cop::Registry.global.names - [REDUNDANT_DISABLE]
137
167
  end
138
168
 
139
169
  def comment_only_line?(line_number)
@@ -148,5 +178,36 @@ module RuboCop
148
178
  non_comment_tokens.map(&:line).uniq
149
179
  end
150
180
  end
181
+
182
+ def enable_all?(comment)
183
+ _, cops = comment.text.match(COMMENT_DIRECTIVE_REGEXP).captures
184
+ cops == 'all'
185
+ end
186
+
187
+ def handle_enable_all(names, extras, comment)
188
+ enabled_cops = 0
189
+ names.each do |name, counter|
190
+ next unless counter.positive?
191
+
192
+ names[name] -= 1
193
+ enabled_cops += 1
194
+ end
195
+
196
+ extras[comment] << 'all' if enabled_cops.zero?
197
+ end
198
+
199
+ # Collect cops that have been disabled or enabled by name in a directive comment
200
+ # so that `Lint/RedundantCopEnableDirective` can register offenses correctly.
201
+ def handle_switch(cop_names, names, disabled, extras, comment)
202
+ cop_names.each do |name|
203
+ if disabled
204
+ names[name] += 1
205
+ elsif (names[name]).positive?
206
+ names[name] -= 1
207
+ else
208
+ extras[comment] << name
209
+ end
210
+ end
211
+ end
151
212
  end
152
213
  end
@@ -2,192 +2,35 @@
2
2
 
3
3
  require 'pathname'
4
4
 
5
+ # FIXME: Moving Rails department code to RuboCop Rails will remove
6
+ # the following rubocop:disable comment.
7
+ # rubocop:disable Metrics/ClassLength
5
8
  module RuboCop
6
9
  # This class represents the configuration of the RuboCop application
7
10
  # and all its cops. A Config is associated with a YAML configuration
8
11
  # file from which it was read. Several different Configs can be used
9
12
  # during a run of the rubocop program, if files in several
10
13
  # directories are inspected.
11
-
12
- # rubocop:disable Metrics/ClassLength
13
14
  class Config
14
15
  include PathUtil
16
+ include FileFinder
17
+ extend Forwardable
15
18
 
16
- COMMON_PARAMS = %w[Exclude Include Severity
17
- AutoCorrect StyleGuide Details].freeze
18
- # 2.1 is the oldest officially supported Ruby version.
19
- DEFAULT_RUBY_VERSION = 2.1
20
- KNOWN_RUBIES = [2.1, 2.2, 2.3, 2.4, 2.5].freeze
21
- OBSOLETE_RUBIES = { 1.9 => '0.50', 2.0 => '0.50' }.freeze
22
- RUBY_VERSION_FILENAME = '.ruby-version'.freeze
23
- DEFAULT_RAILS_VERSION = 5.0
24
- OBSOLETE_COPS = {
25
- 'Style/TrailingComma' =>
26
- 'The `Style/TrailingComma` cop no longer exists. Please use ' \
27
- '`Style/TrailingCommaInLiteral` and/or ' \
28
- '`Style/TrailingCommaInArguments` instead.',
29
- 'Rails/DefaultScope' =>
30
- 'The `Rails/DefaultScope` cop no longer exists.',
31
- 'Lint/InvalidCharacterLiteral' =>
32
- 'The `Lint/InvalidCharacterLiteral` cop has been removed since it ' \
33
- 'was never being actually triggered.',
34
- 'Style/SingleSpaceBeforeFirstArg' =>
35
- 'The `Style/SingleSpaceBeforeFirstArg` cop has been renamed to ' \
36
- '`Layout/SpaceBeforeFirstArg`.',
37
- 'Lint/RescueWithoutErrorClass' =>
38
- 'The `Lint/RescueWithoutErrorClass` cop has been replaced by ' \
39
- '`Style/RescueStandardError`.',
40
- 'Lint/SpaceBeforeFirstArg' =>
41
- 'The `Lint/SpaceBeforeFirstArg` cop has been removed, since it was a ' \
42
- 'duplicate of `Layout/SpaceBeforeFirstArg`. Please use ' \
43
- '`Layout/SpaceBeforeFirstArg` instead.',
44
- 'Layout/SpaceAfterControlKeyword' =>
45
- 'The `Layout/SpaceAfterControlKeyword` cop has been removed. Please ' \
46
- 'use `Layout/SpaceAroundKeyword` instead.',
47
- 'Layout/SpaceBeforeModifierKeyword' =>
48
- 'The `Layout/SpaceBeforeModifierKeyword` cop has been removed. ' \
49
- 'Please use `Layout/SpaceAroundKeyword` instead.',
50
- 'Style/SpaceAfterControlKeyword' =>
51
- 'The `Style/SpaceAfterControlKeyword` cop has been removed. Please ' \
52
- 'use `Layout/SpaceAroundKeyword` instead.',
53
- 'Style/SpaceBeforeModifierKeyword' =>
54
- 'The `Style/SpaceBeforeModifierKeyword` cop has been removed. Please ' \
55
- 'use `Layout/SpaceAroundKeyword` instead.',
56
- 'Style/MethodCallParentheses' =>
57
- 'The `Style/MethodCallParentheses` cop has been renamed to ' \
58
- '`Style/MethodCallWithoutArgsParentheses`.',
59
- 'Lint/Eval' =>
60
- 'The `Lint/Eval` cop has been renamed to `Security/Eval`.',
61
- 'Style/DeprecatedHashMethods' =>
62
- 'The `Style/DeprecatedHashMethods` cop has been renamed to ' \
63
- '`Style/PreferredHashMethods`.',
64
- 'Style/AccessorMethodName' =>
65
- 'The `Style/AccessorMethodName` cop has been moved to ' \
66
- '`Naming/AccessorMethodName`.',
67
- 'Style/AsciiIdentifiers' =>
68
- 'The `Style/AsciiIdentifiers` cop has been moved to ' \
69
- '`Naming/AccessorMethodName`.',
70
- 'Style/OpMethod' =>
71
- 'The `Style/OpMethod` cop has been renamed and moved to ' \
72
- '`Naming/BinaryOperatorParameterName`.',
73
- 'Style/ClassAndModuleCamelCase' =>
74
- 'The `Style/ClassAndModuleCamelCase` cop has been renamed to ' \
75
- '`Naming/ClassAndModuleCamelCase`.',
76
- 'Style/ConstantName' =>
77
- 'The `Style/ConstantName` cop has been renamed to ' \
78
- '`Naming/ConstantName`.',
79
- 'Style/FileName' =>
80
- 'The `Style/FileName` cop has been renamed to `Naming/FileName`.',
81
- 'Style/MethodName' =>
82
- 'The `Style/MethodName` cop has been renamed to ' \
83
- '`Naming/MethodName`.',
84
- 'Style/PredicateName' =>
85
- 'The `Style/PredicateName` cop has been renamed to ' \
86
- '`Naming/PredicateName`.',
87
- 'Style/VariableName' =>
88
- 'The `Style/VariableName` cop has been renamed to ' \
89
- '`Naming/VariableName`.',
90
- 'Style/VariableNumber' =>
91
- 'The `Style/VariableNumber` cop has been renamed to ' \
92
- '`Naming/VariableNumber`.'
93
- }.freeze
94
-
95
- OBSOLETE_PARAMETERS = [
96
- {
97
- cop: 'Layout/SpaceAroundOperators',
98
- parameter: 'MultiSpaceAllowedForOperators',
99
- alternative: 'If your intention was to allow extra spaces ' \
100
- 'for alignment, please use AllowForAlignment: ' \
101
- 'true instead.'
102
- },
103
- {
104
- cop: 'Style/Encoding',
105
- parameter: 'EnforcedStyle',
106
- alternative: 'Style/Encoding no longer supports styles. ' \
107
- 'The "never" behavior is always assumed.'
108
- },
109
- {
110
- cop: 'Style/Encoding',
111
- parameter: 'SupportedStyles',
112
- alternative: 'Style/Encoding no longer supports styles. ' \
113
- 'The "never" behavior is always assumed.'
114
- },
115
- {
116
- cop: 'Style/Encoding',
117
- parameter: 'AutoCorrectEncodingComment',
118
- alternative: 'Style/Encoding no longer supports styles. ' \
119
- 'The "never" behavior is always assumed.'
120
- },
121
- {
122
- cop: 'Style/IfUnlessModifier',
123
- parameter: 'MaxLineLength',
124
- alternative:
125
- '`Style/IfUnlessModifier: MaxLineLength` has been removed. Use ' \
126
- '`Metrics/LineLength: Max` instead'
127
- },
128
- {
129
- cop: 'Style/SpaceAroundOperators',
130
- parameter: 'MultiSpaceAllowedForOperators',
131
- alternative: 'If your intention was to allow extra spaces ' \
132
- 'for alignment, please use AllowForAlignment: ' \
133
- 'true instead.'
134
- },
135
- {
136
- cop: 'Style/WhileUntilModifier',
137
- parameter: 'MaxLineLength',
138
- alternative:
139
- '`Style/WhileUntilModifier: MaxLineLength` has been removed. Use ' \
140
- '`Metrics/LineLength: Max` instead'
141
- },
142
- {
143
- cop: 'AllCops',
144
- parameter: 'RunRailsCops',
145
- alternative: "Use the following configuration instead:\n" \
146
- "Rails:\n Enabled: true"
147
- },
148
- {
149
- cop: 'Layout/CaseIndentation',
150
- parameter: 'IndentWhenRelativeTo',
151
- alternative: '`IndentWhenRelativeTo` has been renamed to ' \
152
- '`EnforcedStyle`'
153
- },
154
- {
155
- cop: 'Lint/BlockAlignment',
156
- parameter: 'AlignWith',
157
- alternative: '`AlignWith` has been renamed to ' \
158
- '`EnforcedStyleAlignWith`'
159
- },
160
- {
161
- cop: 'Lint/EndAlignment',
162
- parameter: 'AlignWith',
163
- alternative: '`AlignWith` has been renamed to ' \
164
- '`EnforcedStyleAlignWith`'
165
- },
166
- {
167
- cop: 'Lint/DefEndAlignment',
168
- parameter: 'AlignWith',
169
- alternative: '`AlignWith` has been renamed to ' \
170
- '`EnforcedStyleAlignWith`'
171
- },
172
- {
173
- cop: 'Rails/UniqBeforePluck',
174
- parameter: 'EnforcedMode',
175
- alternative: '`EnforcedMode` has been renamed to ' \
176
- '`EnforcedStyle`'
177
- }
178
- ].freeze
19
+ CopConfig = Struct.new(:name, :metadata)
179
20
 
21
+ DEFAULT_RAILS_VERSION = 5.0
180
22
  attr_reader :loaded_path
181
23
 
182
24
  def initialize(hash = {}, loaded_path = nil)
183
25
  @loaded_path = loaded_path
184
26
  @for_cop = Hash.new do |h, cop|
185
- qualified_cop_name = Cop::Cop.qualified_cop_name(cop, loaded_path)
27
+ qualified_cop_name = Cop::Registry.qualified_cop_name(cop, loaded_path)
186
28
  cop_options = self[qualified_cop_name] || {}
187
29
  cop_options['Enabled'] = enable_cop?(qualified_cop_name, cop_options)
188
30
  h[cop] = cop_options
189
31
  end
190
32
  @hash = hash
33
+ @validator = ConfigValidator.new(self)
191
34
  end
192
35
 
193
36
  def self.create(hash, path)
@@ -198,62 +41,33 @@ module RuboCop
198
41
  deprecation_check do |deprecation_message|
199
42
  warn("#{loaded_path} - #{deprecation_message}")
200
43
  end
201
- validate
44
+ @validator.validate
202
45
  make_excludes_absolute
203
46
  self
204
47
  end
205
48
 
206
- def [](key)
207
- @hash[key]
208
- end
209
-
210
- def []=(key, value)
211
- @hash[key] = value
212
- end
213
-
214
- def delete(key)
215
- @hash.delete(key)
216
- end
217
-
218
- def each(&block)
219
- @hash.each(&block)
220
- end
221
-
222
- def key?(key)
223
- @hash.key?(key)
224
- end
49
+ def_delegators :@hash, :[], :[]=, :delete, :each, :key?, :keys, :each_key,
50
+ :fetch, :map, :merge, :to_h, :to_hash, :transform_values
51
+ def_delegators :@validator, :validate, :target_ruby_version
225
52
 
226
- def keys
227
- @hash.keys
228
- end
229
-
230
- def each_key(&block)
231
- @hash.each_key(&block)
232
- end
233
-
234
- def map(&block)
235
- @hash.map(&block)
236
- end
237
-
238
- def merge(other_hash)
239
- @hash.merge(other_hash)
240
- end
241
-
242
- def to_h
243
- @hash
53
+ def to_s
54
+ @to_s ||= @hash.to_s
244
55
  end
245
56
 
246
- def to_hash
247
- @hash
57
+ def signature
58
+ @signature ||= Digest::SHA1.hexdigest(to_s)
248
59
  end
249
60
 
250
- def to_s
251
- @to_s ||= @hash.to_s
61
+ # True if this is a config file that is shipped with RuboCop
62
+ def internal?
63
+ base_config_path = File.expand_path(File.join(ConfigLoader::RUBOCOP_HOME,
64
+ 'config'))
65
+ File.expand_path(loaded_path).start_with?(base_config_path)
252
66
  end
253
67
 
254
68
  def make_excludes_absolute
255
69
  each_key do |key|
256
- validate_section_presence(key)
70
+ @validator.validate_section_presence(key)
257
71
  next unless self[key]['Exclude']
258
72
 
259
73
  self[key]['Exclude'].map! do |exclude_elem|
@@ -290,38 +104,48 @@ module RuboCop
290
104
  end
291
105
  end
292
106
 
107
+ # @return [Config] for the given cop / cop name.
108
+ # Note: the 'Enabled' attribute is calculated according to the department's
109
+ # and 'AllCops' configuration; other attributes are not inherited.
293
110
  def for_cop(cop)
294
111
  @for_cop[cop.respond_to?(:cop_name) ? cop.cop_name : cop]
295
112
  end
296
113
 
114
+ # @return [Config] for the given cop merged with that of its department (if any)
115
+ # Note: the 'Enabled' attribute is same as that returned by `for_cop`
116
+ def for_badge(badge)
117
+ cop_config = for_cop(badge.to_s)
118
+ fetch(badge.department.to_s) { return cop_config }
119
+ .merge(cop_config)
120
+ end
121
+
122
+ # @return [Config] for the given department name.
123
+ # Note: the 'Enabled' attribute will be present only if specified
124
+ # at the department's level
125
+ def for_department(department_name)
126
+ @for_department ||= Hash.new do |h, dept|
127
+ h[dept] = self[dept] || {}
128
+ end
129
+ @for_department[department_name.to_s]
130
+ end
131
+
297
132
  def for_all_cops
298
133
  @for_all_cops ||= self['AllCops'] || {}
299
134
  end
300
135
 
301
- def validate
302
- # Don't validate RuboCop's own files. Avoids infinite recursion.
303
- base_config_path = File.expand_path(File.join(ConfigLoader::RUBOCOP_HOME,
304
- 'config'))
305
- return if File.expand_path(loaded_path).start_with?(base_config_path)
306
-
307
- valid_cop_names, invalid_cop_names = keys.partition do |key|
308
- ConfigLoader.default_configuration.key?(key)
309
- end
136
+ def disabled_new_cops?
137
+ for_all_cops['NewCops'] == 'disable'
138
+ end
310
139
 
311
- reject_obsolete_cops_and_parameters
312
- warn_about_unrecognized_cops(invalid_cop_names)
313
- check_target_ruby
314
- validate_parameter_names(valid_cop_names)
315
- validate_enforced_styles(valid_cop_names)
316
- validate_syntax_cop
317
- reject_mutually_exclusive_defaults
140
+ def enabled_new_cops?
141
+ for_all_cops['NewCops'] == 'enable'
318
142
  end
319
143
 
320
144
  def file_to_include?(file)
321
145
  relative_file_path = path_relative_to_config(file)
322
146
 
323
147
  # Optimization to quickly decide if the given file is hidden (on the top
324
- # level) and can not be matched by any pattern.
148
+ # level) and cannot be matched by any pattern.
325
149
  is_hidden = relative_file_path.start_with?('.') &&
326
150
  !relative_file_path.start_with?('..')
327
151
  return false if is_hidden && !possibly_include_hidden?
@@ -329,8 +153,25 @@ module RuboCop
329
153
  absolute_file_path = File.expand_path(file)
330
154
 
331
155
  patterns_to_include.any? do |pattern|
332
- match_path?(pattern, relative_file_path) ||
333
- match_path?(pattern, absolute_file_path)
156
+ if block_given?
157
+ yield pattern, relative_file_path, absolute_file_path
158
+ else
159
+ match_path?(pattern, relative_file_path) ||
160
+ match_path?(pattern, absolute_file_path)
161
+ end
162
+ end
163
+ end
164
+
165
+ def allowed_camel_case_file?(file)
166
+ # Gemspecs are allowed to have dashes because that fits with bundler best
167
+ # practices in the case when the gem is nested under a namespace (e.g.,
168
+ # `bundler-console` conveys `Bundler::Console`).
169
+ return true if File.extname(file) == '.gemspec'
170
+
171
+ file_to_include?(file) do |pattern, relative_path, absolute_path|
172
+ /[A-Z]/.match?(pattern.to_s) &&
173
+ (match_path?(pattern, relative_path) ||
174
+ match_path?(pattern, absolute_path))
334
175
  end
335
176
  end
336
177
 
@@ -352,11 +193,11 @@ module RuboCop
352
193
  end
353
194
 
354
195
  def patterns_to_include
355
- for_all_cops['Include']
196
+ for_all_cops['Include'] || []
356
197
  end
357
198
 
358
199
  def patterns_to_exclude
359
- for_all_cops['Exclude']
200
+ for_all_cops['Exclude'] || []
360
201
  end
361
202
 
362
203
  def path_relative_to_config(path)
@@ -378,189 +219,80 @@ module RuboCop
378
219
  end
379
220
  end
380
221
 
381
- def target_ruby_version
382
- @target_ruby_version ||=
383
- if for_all_cops['TargetRubyVersion']
384
- @target_ruby_version_source = :rubocop_yml
385
-
386
- for_all_cops['TargetRubyVersion']
387
- elsif target_ruby_version_from_version_file
388
- @target_ruby_version_source = :ruby_version_file
389
-
390
- target_ruby_version_from_version_file
391
- else
392
- DEFAULT_RUBY_VERSION
393
- end
394
- end
395
-
396
222
  def target_rails_version
397
223
  @target_rails_version ||=
398
- for_all_cops.fetch('TargetRailsVersion', DEFAULT_RAILS_VERSION)
399
- end
400
-
401
- private
402
-
403
- def warn_about_unrecognized_cops(invalid_cop_names)
404
- invalid_cop_names.each do |name|
405
- # There could be a custom cop with this name. If so, don't warn
406
- next if Cop::Cop.registry.contains_cop_matching?([name])
407
-
408
- warn Rainbow("Warning: unrecognized cop #{name} found in " \
409
- "#{smart_loaded_path}").yellow
410
- end
411
- end
412
-
413
- def validate_syntax_cop
414
- syntax_config = self['Lint/Syntax']
415
- default_config = ConfigLoader.default_configuration['Lint/Syntax']
416
-
417
- return unless syntax_config &&
418
- default_config.merge(syntax_config) != default_config
419
-
420
- raise ValidationError,
421
- "configuration for Syntax cop found in #{smart_loaded_path}\n" \
422
- 'It\'s not possible to disable this cop.'
224
+ if for_all_cops['TargetRailsVersion']
225
+ for_all_cops['TargetRailsVersion'].to_f
226
+ elsif target_rails_version_from_bundler_lock_file
227
+ target_rails_version_from_bundler_lock_file
228
+ else
229
+ DEFAULT_RAILS_VERSION
230
+ end
423
231
  end
424
232
 
425
- def validate_section_presence(name)
426
- return unless key?(name) && self[name].nil?
427
- raise ValidationError,
428
- "empty section #{name} found in #{smart_loaded_path}"
233
+ def smart_loaded_path
234
+ PathUtil.smart_path(@loaded_path)
429
235
  end
430
236
 
431
- def validate_parameter_names(valid_cop_names)
432
- valid_cop_names.each do |name|
433
- validate_section_presence(name)
434
- self[name].each_key do |param|
435
- next if COMMON_PARAMS.include?(param) ||
436
- ConfigLoader.default_configuration[name].key?(param)
237
+ def bundler_lock_file_path
238
+ return nil unless loaded_path
437
239
 
438
- warn Rainbow("Warning: unrecognized parameter #{name}:#{param} " \
439
- "found in #{smart_loaded_path}").yellow
440
- end
240
+ base_path = base_dir_for_path_parameters
241
+ ['gems.locked', 'Gemfile.lock'].each do |file_name|
242
+ path = find_file_upwards(file_name, base_path)
243
+ return path if path
441
244
  end
245
+ nil
442
246
  end
443
247
 
444
- def validate_enforced_styles(valid_cop_names)
445
- valid_cop_names.each do |name|
446
- styles = self[name].select { |key, _| key.start_with?('Enforced') }
248
+ def pending_cops
249
+ keys.each_with_object([]) do |qualified_cop_name, pending_cops|
250
+ department = department_of(qualified_cop_name)
251
+ next if department && department['Enabled'] == false
447
252
 
448
- styles.each do |style_name, style|
449
- supported_key = RuboCop::Cop::Util.to_supported_styles(style_name)
450
- valid = ConfigLoader.default_configuration[name][supported_key]
451
- next unless valid
452
- next if valid.include?(style)
253
+ cop_metadata = self[qualified_cop_name]
254
+ next unless cop_metadata['Enabled'] == 'pending'
453
255
 
454
- msg = "invalid #{style_name} '#{style}' for #{name} found in " \
455
- "#{smart_loaded_path}\n" \
456
- "Valid choices are: #{valid.join(', ')}"
457
- raise ValidationError, msg
458
- end
256
+ pending_cops << CopConfig.new(qualified_cop_name, cop_metadata)
459
257
  end
460
258
  end
461
259
 
462
- def reject_obsolete_cops_and_parameters
463
- messages = [
464
- obsolete_cops,
465
- obsolete_parameters
466
- ].flatten.compact
467
- return if messages.empty?
260
+ private
468
261
 
469
- raise ValidationError, messages.join("\n")
262
+ def target_rails_version_from_bundler_lock_file
263
+ @target_rails_version_from_bundler_lock_file ||=
264
+ read_rails_version_from_bundler_lock_file
470
265
  end
471
266
 
472
- def obsolete_parameters
473
- OBSOLETE_PARAMETERS.map do |params|
474
- obsolete_parameter_message(params[:cop], params[:parameter],
475
- params[:alternative])
476
- end
477
- end
478
-
479
- def obsolete_parameter_message(cop, parameter, alternative)
480
- return unless self[cop] && self[cop].key?(parameter)
481
-
482
- "obsolete parameter #{parameter} (for #{cop}) " \
483
- "found in #{smart_loaded_path}" \
484
- "\n#{alternative}"
485
- end
267
+ def read_rails_version_from_bundler_lock_file
268
+ lock_file_path = bundler_lock_file_path
269
+ return nil unless lock_file_path
486
270
 
487
- def obsolete_cops
488
- OBSOLETE_COPS.map do |cop_name, message|
489
- next unless key?(cop_name) || key?(Cop::Badge.parse(cop_name).cop_name)
490
- message + "\n(obsolete configuration found in #{smart_loaded_path}," \
491
- ' please update it)'
271
+ File.foreach(lock_file_path) do |line|
272
+ # If rails is in Gemfile.lock or gems.lock, there should be a line like:
273
+ # rails (X.X.X)
274
+ result = line.match(/^\s+rails\s+\((\d+\.\d+)/)
275
+ return result.captures.first.to_f if result
492
276
  end
493
277
  end
494
278
 
495
- def check_target_ruby
496
- return if KNOWN_RUBIES.include?(target_ruby_version)
497
-
498
- msg = if OBSOLETE_RUBIES.include?(target_ruby_version)
499
- "Unsupported Ruby version #{target_ruby_version} found in " \
500
- "#{target_ruby_source}. #{target_ruby_version}-compatible " \
501
- 'analysis was dropped after version ' \
502
- "#{OBSOLETE_RUBIES[target_ruby_version]}."
503
- else
504
- "Unknown Ruby version #{target_ruby_version.inspect} found in " \
505
- "#{target_ruby_source}."
506
- end
507
-
508
- msg += "\nSupported versions: #{KNOWN_RUBIES.join(', ')}"
509
-
510
- raise ValidationError, msg
511
- end
512
-
513
- def target_ruby_source
514
- case @target_ruby_version_source
515
- when :ruby_version_file
516
- "`#{RUBY_VERSION_FILENAME}`"
517
- when :rubocop_yml
518
- "`TargetRubyVersion` parameter (in #{smart_loaded_path})"
279
+ def enable_cop?(qualified_cop_name, cop_options)
280
+ department = department_of(qualified_cop_name)
281
+ cop_enabled = cop_options.fetch('Enabled') do
282
+ !for_all_cops['DisabledByDefault']
519
283
  end
520
- end
521
-
522
- def ruby_version_file
523
- @ruby_version_file ||=
524
- PathUtil.find_file_upwards(RUBY_VERSION_FILENAME,
525
- base_dir_for_path_parameters)
526
- end
527
-
528
- def target_ruby_version_from_version_file
529
- file = ruby_version_file
530
- return unless file && File.file?(file)
284
+ return true if cop_enabled == 'override_department'
285
+ return false if department && department['Enabled'] == false
531
286
 
532
- @target_ruby_version_from_version_file ||=
533
- File.read(file).match(/\A(ruby-)?(?<version>\d+\.\d+)/) do |md|
534
- md[:version].to_f
535
- end
287
+ cop_enabled
536
288
  end
537
289
 
538
- def reject_mutually_exclusive_defaults
539
- disabled_by_default = for_all_cops['DisabledByDefault']
540
- enabled_by_default = for_all_cops['EnabledByDefault']
541
- return unless disabled_by_default && enabled_by_default
542
-
543
- msg = 'Cops cannot be both enabled by default and disabled by default'
544
- raise ValidationError, msg
545
- end
546
-
547
- def enable_cop?(qualified_cop_name, cop_options)
290
+ def department_of(qualified_cop_name)
548
291
  cop_department, cop_name = qualified_cop_name.split('/')
549
- department = cop_name.nil?
292
+ return nil if cop_name.nil?
550
293
 
551
- unless department
552
- department_options = self[cop_department]
553
- if department_options && department_options['Enabled'] == false
554
- return false
555
- end
556
- end
557
-
558
- cop_options.fetch('Enabled', true)
559
- end
560
-
561
- def smart_loaded_path
562
- PathUtil.smart_path(@loaded_path)
294
+ self[cop_department]
563
295
  end
564
296
  end
565
- # rubocop:enable Metrics/ClassLength
566
297
  end
298
+ # rubocop:enable Metrics/ClassLength