rubocop 0.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (602) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +20 -0
  3. data/README.md +217 -0
  4. data/assets/logo.png +0 -0
  5. data/assets/output.html.erb +261 -0
  6. data/bin/console +10 -0
  7. data/bin/setup +7 -0
  8. data/config/default.yml +3939 -0
  9. data/exe/rubocop +17 -0
  10. data/lib/rubocop.rb +608 -0
  11. data/lib/rubocop/ast/builder.rb +81 -0
  12. data/lib/rubocop/ast/node.rb +640 -0
  13. data/lib/rubocop/ast/node/alias_node.rb +24 -0
  14. data/lib/rubocop/ast/node/and_node.rb +29 -0
  15. data/lib/rubocop/ast/node/args_node.rb +29 -0
  16. data/lib/rubocop/ast/node/array_node.rb +57 -0
  17. data/lib/rubocop/ast/node/block_node.rb +115 -0
  18. data/lib/rubocop/ast/node/break_node.rb +17 -0
  19. data/lib/rubocop/ast/node/case_node.rb +56 -0
  20. data/lib/rubocop/ast/node/class_node.rb +31 -0
  21. data/lib/rubocop/ast/node/def_node.rb +71 -0
  22. data/lib/rubocop/ast/node/defined_node.rb +17 -0
  23. data/lib/rubocop/ast/node/ensure_node.rb +17 -0
  24. data/lib/rubocop/ast/node/float_node.rb +12 -0
  25. data/lib/rubocop/ast/node/for_node.rb +53 -0
  26. data/lib/rubocop/ast/node/hash_node.rb +109 -0
  27. data/lib/rubocop/ast/node/if_node.rb +175 -0
  28. data/lib/rubocop/ast/node/int_node.rb +12 -0
  29. data/lib/rubocop/ast/node/keyword_splat_node.rb +45 -0
  30. data/lib/rubocop/ast/node/mixin/basic_literal_node.rb +16 -0
  31. data/lib/rubocop/ast/node/mixin/binary_operator_node.rb +43 -0
  32. data/lib/rubocop/ast/node/mixin/collection_node.rb +15 -0
  33. data/lib/rubocop/ast/node/mixin/conditional_node.rb +45 -0
  34. data/lib/rubocop/ast/node/mixin/hash_element_node.rb +125 -0
  35. data/lib/rubocop/ast/node/mixin/method_dispatch_node.rb +261 -0
  36. data/lib/rubocop/ast/node/mixin/method_identifier_predicates.rb +114 -0
  37. data/lib/rubocop/ast/node/mixin/modifier_node.rb +17 -0
  38. data/lib/rubocop/ast/node/mixin/numeric_node.rb +21 -0
  39. data/lib/rubocop/ast/node/mixin/parameterized_node.rb +61 -0
  40. data/lib/rubocop/ast/node/mixin/predicate_operator_node.rb +35 -0
  41. data/lib/rubocop/ast/node/module_node.rb +24 -0
  42. data/lib/rubocop/ast/node/or_node.rb +29 -0
  43. data/lib/rubocop/ast/node/pair_node.rb +63 -0
  44. data/lib/rubocop/ast/node/range_node.rb +18 -0
  45. data/lib/rubocop/ast/node/regexp_node.rb +35 -0
  46. data/lib/rubocop/ast/node/resbody_node.rb +24 -0
  47. data/lib/rubocop/ast/node/retry_node.rb +17 -0
  48. data/lib/rubocop/ast/node/self_class_node.rb +24 -0
  49. data/lib/rubocop/ast/node/send_node.rb +13 -0
  50. data/lib/rubocop/ast/node/str_node.rb +16 -0
  51. data/lib/rubocop/ast/node/super_node.rb +21 -0
  52. data/lib/rubocop/ast/node/symbol_node.rb +12 -0
  53. data/lib/rubocop/ast/node/until_node.rb +35 -0
  54. data/lib/rubocop/ast/node/when_node.rb +53 -0
  55. data/lib/rubocop/ast/node/while_node.rb +35 -0
  56. data/lib/rubocop/ast/node/yield_node.rb +21 -0
  57. data/lib/rubocop/ast/sexp.rb +16 -0
  58. data/lib/rubocop/ast/traversal.rb +183 -0
  59. data/lib/rubocop/cached_data.rb +58 -0
  60. data/lib/rubocop/cli.rb +343 -0
  61. data/lib/rubocop/comment_config.rb +201 -0
  62. data/lib/rubocop/config.rb +244 -0
  63. data/lib/rubocop/config_loader.rb +273 -0
  64. data/lib/rubocop/config_loader_resolver.rb +194 -0
  65. data/lib/rubocop/config_obsoletion.rb +213 -0
  66. data/lib/rubocop/config_store.rb +48 -0
  67. data/lib/rubocop/config_validator.rb +239 -0
  68. data/lib/rubocop/cop/autocorrect_logic.rb +103 -0
  69. data/lib/rubocop/cop/badge.rb +73 -0
  70. data/lib/rubocop/cop/bundler/duplicated_gem.rb +73 -0
  71. data/lib/rubocop/cop/bundler/gem_comment.rb +64 -0
  72. data/lib/rubocop/cop/bundler/insecure_protocol_source.rb +69 -0
  73. data/lib/rubocop/cop/bundler/ordered_gems.rb +73 -0
  74. data/lib/rubocop/cop/commissioner.rb +137 -0
  75. data/lib/rubocop/cop/cop.rb +271 -0
  76. data/lib/rubocop/cop/corrector.rb +171 -0
  77. data/lib/rubocop/cop/correctors/alignment_corrector.rb +146 -0
  78. data/lib/rubocop/cop/correctors/condition_corrector.rb +28 -0
  79. data/lib/rubocop/cop/correctors/each_to_for_corrector.rb +53 -0
  80. data/lib/rubocop/cop/correctors/empty_line_corrector.rb +26 -0
  81. data/lib/rubocop/cop/correctors/for_to_each_corrector.rb +73 -0
  82. data/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
  83. data/lib/rubocop/cop/correctors/line_break_corrector.rb +61 -0
  84. data/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +68 -0
  85. data/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +44 -0
  86. data/lib/rubocop/cop/correctors/parentheses_corrector.rb +31 -0
  87. data/lib/rubocop/cop/correctors/percent_literal_corrector.rb +117 -0
  88. data/lib/rubocop/cop/correctors/punctuation_corrector.rb +29 -0
  89. data/lib/rubocop/cop/correctors/space_corrector.rb +49 -0
  90. data/lib/rubocop/cop/correctors/string_literal_corrector.rb +25 -0
  91. data/lib/rubocop/cop/correctors/unused_arg_corrector.rb +43 -0
  92. data/lib/rubocop/cop/force.rb +42 -0
  93. data/lib/rubocop/cop/gemspec/duplicated_assignment.rb +104 -0
  94. data/lib/rubocop/cop/gemspec/ordered_dependencies.rb +106 -0
  95. data/lib/rubocop/cop/gemspec/required_ruby_version.rb +85 -0
  96. data/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +55 -0
  97. data/lib/rubocop/cop/generator.rb +223 -0
  98. data/lib/rubocop/cop/generator/configuration_injector.rb +66 -0
  99. data/lib/rubocop/cop/generator/require_file_injector.rb +78 -0
  100. data/lib/rubocop/cop/ignored_node.rb +38 -0
  101. data/lib/rubocop/cop/internal_affairs.rb +8 -0
  102. data/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
  103. data/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +44 -0
  104. data/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +54 -0
  105. data/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +48 -0
  106. data/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +73 -0
  107. data/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
  108. data/lib/rubocop/cop/layout/access_modifier_indentation.rb +98 -0
  109. data/lib/rubocop/cop/layout/align_arguments.rb +93 -0
  110. data/lib/rubocop/cop/layout/align_array.rb +39 -0
  111. data/lib/rubocop/cop/layout/align_hash.rb +358 -0
  112. data/lib/rubocop/cop/layout/align_parameters.rb +118 -0
  113. data/lib/rubocop/cop/layout/block_alignment.rb +244 -0
  114. data/lib/rubocop/cop/layout/block_end_newline.rb +62 -0
  115. data/lib/rubocop/cop/layout/case_indentation.rb +161 -0
  116. data/lib/rubocop/cop/layout/class_structure.rb +340 -0
  117. data/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +126 -0
  118. data/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +203 -0
  119. data/lib/rubocop/cop/layout/comment_indentation.rb +144 -0
  120. data/lib/rubocop/cop/layout/condition_position.rb +56 -0
  121. data/lib/rubocop/cop/layout/def_end_alignment.rb +74 -0
  122. data/lib/rubocop/cop/layout/dot_position.rb +105 -0
  123. data/lib/rubocop/cop/layout/else_alignment.rb +134 -0
  124. data/lib/rubocop/cop/layout/empty_comment.rb +160 -0
  125. data/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +157 -0
  126. data/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +64 -0
  127. data/lib/rubocop/cop/layout/empty_line_between_defs.rb +151 -0
  128. data/lib/rubocop/cop/layout/empty_lines.rb +76 -0
  129. data/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +215 -0
  130. data/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +99 -0
  131. data/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +45 -0
  132. data/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +41 -0
  133. data/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +88 -0
  134. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +136 -0
  135. data/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +45 -0
  136. data/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +62 -0
  137. data/lib/rubocop/cop/layout/end_alignment.rb +189 -0
  138. data/lib/rubocop/cop/layout/end_of_line.rb +87 -0
  139. data/lib/rubocop/cop/layout/extra_spacing.rb +201 -0
  140. data/lib/rubocop/cop/layout/first_array_element_line_break.rb +45 -0
  141. data/lib/rubocop/cop/layout/first_hash_element_line_break.rb +37 -0
  142. data/lib/rubocop/cop/layout/first_method_argument_line_break.rb +55 -0
  143. data/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +46 -0
  144. data/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +289 -0
  145. data/lib/rubocop/cop/layout/indent_assignment.rb +55 -0
  146. data/lib/rubocop/cop/layout/indent_first_argument.rb +247 -0
  147. data/lib/rubocop/cop/layout/indent_first_array_element.rb +167 -0
  148. data/lib/rubocop/cop/layout/indent_first_hash_element.rb +184 -0
  149. data/lib/rubocop/cop/layout/indent_first_parameter.rb +100 -0
  150. data/lib/rubocop/cop/layout/indent_heredoc.rb +256 -0
  151. data/lib/rubocop/cop/layout/indentation_consistency.rb +202 -0
  152. data/lib/rubocop/cop/layout/indentation_width.rb +364 -0
  153. data/lib/rubocop/cop/layout/initial_indentation.rb +59 -0
  154. data/lib/rubocop/cop/layout/leading_blank_lines.rb +53 -0
  155. data/lib/rubocop/cop/layout/leading_comment_space.rb +88 -0
  156. data/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +118 -0
  157. data/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +39 -0
  158. data/lib/rubocop/cop/layout/multiline_assignment_layout.rb +95 -0
  159. data/lib/rubocop/cop/layout/multiline_block_layout.rb +146 -0
  160. data/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +122 -0
  161. data/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +50 -0
  162. data/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +54 -0
  163. data/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +134 -0
  164. data/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +220 -0
  165. data/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +131 -0
  166. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +114 -0
  167. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +189 -0
  168. data/lib/rubocop/cop/layout/space_after_colon.rb +47 -0
  169. data/lib/rubocop/cop/layout/space_after_comma.rb +35 -0
  170. data/lib/rubocop/cop/layout/space_after_method_name.rb +42 -0
  171. data/lib/rubocop/cop/layout/space_after_not.rb +40 -0
  172. data/lib/rubocop/cop/layout/space_after_semicolon.rb +32 -0
  173. data/lib/rubocop/cop/layout/space_around_block_parameters.rb +169 -0
  174. data/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +92 -0
  175. data/lib/rubocop/cop/layout/space_around_keyword.rb +232 -0
  176. data/lib/rubocop/cop/layout/space_around_operators.rb +182 -0
  177. data/lib/rubocop/cop/layout/space_before_block_braces.rb +119 -0
  178. data/lib/rubocop/cop/layout/space_before_comma.rb +31 -0
  179. data/lib/rubocop/cop/layout/space_before_comment.rb +35 -0
  180. data/lib/rubocop/cop/layout/space_before_first_arg.rb +67 -0
  181. data/lib/rubocop/cop/layout/space_before_semicolon.rb +27 -0
  182. data/lib/rubocop/cop/layout/space_in_lambda_literal.rb +80 -0
  183. data/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +228 -0
  184. data/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +53 -0
  185. data/lib/rubocop/cop/layout/space_inside_block_braces.rb +248 -0
  186. data/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +207 -0
  187. data/lib/rubocop/cop/layout/space_inside_parens.rb +113 -0
  188. data/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +65 -0
  189. data/lib/rubocop/cop/layout/space_inside_range_literal.rb +63 -0
  190. data/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +150 -0
  191. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +65 -0
  192. data/lib/rubocop/cop/layout/tab.rb +75 -0
  193. data/lib/rubocop/cop/layout/trailing_blank_lines.rb +113 -0
  194. data/lib/rubocop/cop/layout/trailing_whitespace.rb +61 -0
  195. data/lib/rubocop/cop/lint/ambiguous_block_association.rb +62 -0
  196. data/lib/rubocop/cop/lint/ambiguous_operator.rb +55 -0
  197. data/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +43 -0
  198. data/lib/rubocop/cop/lint/assignment_in_condition.rb +97 -0
  199. data/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
  200. data/lib/rubocop/cop/lint/boolean_symbol.rb +38 -0
  201. data/lib/rubocop/cop/lint/circular_argument_reference.rb +72 -0
  202. data/lib/rubocop/cop/lint/debugger.rb +77 -0
  203. data/lib/rubocop/cop/lint/deprecated_class_methods.rb +111 -0
  204. data/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +81 -0
  205. data/lib/rubocop/cop/lint/duplicate_case_condition.rb +53 -0
  206. data/lib/rubocop/cop/lint/duplicate_methods.rb +239 -0
  207. data/lib/rubocop/cop/lint/duplicated_key.rb +38 -0
  208. data/lib/rubocop/cop/lint/each_with_object_argument.rb +42 -0
  209. data/lib/rubocop/cop/lint/else_layout.rb +66 -0
  210. data/lib/rubocop/cop/lint/empty_ensure.rb +60 -0
  211. data/lib/rubocop/cop/lint/empty_expression.rb +42 -0
  212. data/lib/rubocop/cop/lint/empty_interpolation.rb +36 -0
  213. data/lib/rubocop/cop/lint/empty_when.rb +38 -0
  214. data/lib/rubocop/cop/lint/end_in_method.rb +40 -0
  215. data/lib/rubocop/cop/lint/ensure_return.rb +46 -0
  216. data/lib/rubocop/cop/lint/erb_new_arguments.rb +163 -0
  217. data/lib/rubocop/cop/lint/flip_flop.rb +32 -0
  218. data/lib/rubocop/cop/lint/float_out_of_range.rb +35 -0
  219. data/lib/rubocop/cop/lint/format_parameter_mismatch.rb +159 -0
  220. data/lib/rubocop/cop/lint/handle_exceptions.rb +95 -0
  221. data/lib/rubocop/cop/lint/heredoc_method_call_position.rb +156 -0
  222. data/lib/rubocop/cop/lint/implicit_string_concatenation.rb +101 -0
  223. data/lib/rubocop/cop/lint/ineffective_access_modifier.rb +127 -0
  224. data/lib/rubocop/cop/lint/inherit_exception.rb +100 -0
  225. data/lib/rubocop/cop/lint/interpolation_check.rb +40 -0
  226. data/lib/rubocop/cop/lint/literal_as_condition.rb +138 -0
  227. data/lib/rubocop/cop/lint/literal_in_interpolation.rb +98 -0
  228. data/lib/rubocop/cop/lint/loop.rb +63 -0
  229. data/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +84 -0
  230. data/lib/rubocop/cop/lint/multiple_compare.rb +48 -0
  231. data/lib/rubocop/cop/lint/nested_method_definition.rb +104 -0
  232. data/lib/rubocop/cop/lint/nested_percent_literal.rb +51 -0
  233. data/lib/rubocop/cop/lint/next_without_accumulator.rb +50 -0
  234. data/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +83 -0
  235. data/lib/rubocop/cop/lint/number_conversion.rb +81 -0
  236. data/lib/rubocop/cop/lint/ordered_magic_comments.rb +86 -0
  237. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +64 -0
  238. data/lib/rubocop/cop/lint/percent_string_array.rb +73 -0
  239. data/lib/rubocop/cop/lint/percent_symbol_array.rb +69 -0
  240. data/lib/rubocop/cop/lint/rand_one.rb +45 -0
  241. data/lib/rubocop/cop/lint/redundant_with_index.rb +82 -0
  242. data/lib/rubocop/cop/lint/redundant_with_object.rb +83 -0
  243. data/lib/rubocop/cop/lint/regexp_as_condition.rb +29 -0
  244. data/lib/rubocop/cop/lint/require_parentheses.rb +66 -0
  245. data/lib/rubocop/cop/lint/rescue_exception.rb +46 -0
  246. data/lib/rubocop/cop/lint/rescue_type.rb +94 -0
  247. data/lib/rubocop/cop/lint/return_in_void_context.rb +74 -0
  248. data/lib/rubocop/cop/lint/safe_navigation_chain.rb +66 -0
  249. data/lib/rubocop/cop/lint/safe_navigation_consistency.rb +94 -0
  250. data/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +38 -0
  251. data/lib/rubocop/cop/lint/script_permission.rb +70 -0
  252. data/lib/rubocop/cop/lint/send_with_mixin_argument.rb +91 -0
  253. data/lib/rubocop/cop/lint/shadowed_argument.rb +182 -0
  254. data/lib/rubocop/cop/lint/shadowed_exception.rb +178 -0
  255. data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +53 -0
  256. data/lib/rubocop/cop/lint/string_conversion_in_interpolation.rb +59 -0
  257. data/lib/rubocop/cop/lint/syntax.rb +59 -0
  258. data/lib/rubocop/cop/lint/to_json.rb +41 -0
  259. data/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +82 -0
  260. data/lib/rubocop/cop/lint/unified_integer.rb +45 -0
  261. data/lib/rubocop/cop/lint/unneeded_cop_disable_directive.rb +263 -0
  262. data/lib/rubocop/cop/lint/unneeded_cop_enable_directive.rb +116 -0
  263. data/lib/rubocop/cop/lint/unneeded_require_statement.rb +50 -0
  264. data/lib/rubocop/cop/lint/unneeded_splat_expansion.rb +172 -0
  265. data/lib/rubocop/cop/lint/unreachable_code.rb +99 -0
  266. data/lib/rubocop/cop/lint/unused_block_argument.rb +165 -0
  267. data/lib/rubocop/cop/lint/unused_method_argument.rb +86 -0
  268. data/lib/rubocop/cop/lint/uri_escape_unescape.rb +76 -0
  269. data/lib/rubocop/cop/lint/uri_regexp.rb +73 -0
  270. data/lib/rubocop/cop/lint/useless_access_modifier.rb +240 -0
  271. data/lib/rubocop/cop/lint/useless_assignment.rb +129 -0
  272. data/lib/rubocop/cop/lint/useless_comparison.rb +28 -0
  273. data/lib/rubocop/cop/lint/useless_else_without_rescue.rb +49 -0
  274. data/lib/rubocop/cop/lint/useless_setter_call.rb +164 -0
  275. data/lib/rubocop/cop/lint/void.rb +151 -0
  276. data/lib/rubocop/cop/message_annotator.rb +129 -0
  277. data/lib/rubocop/cop/metrics/abc_size.rb +24 -0
  278. data/lib/rubocop/cop/metrics/block_length.rb +50 -0
  279. data/lib/rubocop/cop/metrics/block_nesting.rb +65 -0
  280. data/lib/rubocop/cop/metrics/class_length.rb +36 -0
  281. data/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +32 -0
  282. data/lib/rubocop/cop/metrics/line_length.rb +321 -0
  283. data/lib/rubocop/cop/metrics/method_length.rb +36 -0
  284. data/lib/rubocop/cop/metrics/module_length.rb +36 -0
  285. data/lib/rubocop/cop/metrics/parameter_lists.rb +54 -0
  286. data/lib/rubocop/cop/metrics/perceived_complexity.rb +61 -0
  287. data/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +67 -0
  288. data/lib/rubocop/cop/migration/department_name.rb +44 -0
  289. data/lib/rubocop/cop/mixin/alignment.rb +74 -0
  290. data/lib/rubocop/cop/mixin/annotation_comment.rb +37 -0
  291. data/lib/rubocop/cop/mixin/array_min_size.rb +59 -0
  292. data/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
  293. data/lib/rubocop/cop/mixin/check_assignment.rb +44 -0
  294. data/lib/rubocop/cop/mixin/check_line_breakable.rb +190 -0
  295. data/lib/rubocop/cop/mixin/classish_length.rb +37 -0
  296. data/lib/rubocop/cop/mixin/code_length.rb +38 -0
  297. data/lib/rubocop/cop/mixin/configurable_enforced_style.rb +98 -0
  298. data/lib/rubocop/cop/mixin/configurable_formatting.rb +47 -0
  299. data/lib/rubocop/cop/mixin/configurable_max.rb +23 -0
  300. data/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
  301. data/lib/rubocop/cop/mixin/configurable_numbering.rb +17 -0
  302. data/lib/rubocop/cop/mixin/def_node.rb +33 -0
  303. data/lib/rubocop/cop/mixin/documentation_comment.rb +52 -0
  304. data/lib/rubocop/cop/mixin/duplication.rb +46 -0
  305. data/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
  306. data/lib/rubocop/cop/mixin/empty_parameter.rb +24 -0
  307. data/lib/rubocop/cop/mixin/end_keyword_alignment.rb +67 -0
  308. data/lib/rubocop/cop/mixin/enforce_superclass.rb +30 -0
  309. data/lib/rubocop/cop/mixin/first_element_line_break.rb +46 -0
  310. data/lib/rubocop/cop/mixin/frozen_string_literal.rb +53 -0
  311. data/lib/rubocop/cop/mixin/hash_alignment.rb +147 -0
  312. data/lib/rubocop/cop/mixin/heredoc.rb +32 -0
  313. data/lib/rubocop/cop/mixin/ignored_methods.rb +19 -0
  314. data/lib/rubocop/cop/mixin/ignored_pattern.rb +29 -0
  315. data/lib/rubocop/cop/mixin/integer_node.rb +14 -0
  316. data/lib/rubocop/cop/mixin/interpolation.rb +27 -0
  317. data/lib/rubocop/cop/mixin/match_range.rb +26 -0
  318. data/lib/rubocop/cop/mixin/method_complexity.rb +56 -0
  319. data/lib/rubocop/cop/mixin/method_preference.rb +31 -0
  320. data/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
  321. data/lib/rubocop/cop/mixin/multiline_element_indentation.rb +86 -0
  322. data/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +33 -0
  323. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +255 -0
  324. data/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
  325. data/lib/rubocop/cop/mixin/negative_conditional.rb +32 -0
  326. data/lib/rubocop/cop/mixin/nil_methods.rb +25 -0
  327. data/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
  328. data/lib/rubocop/cop/mixin/ordered_gem_node.rb +56 -0
  329. data/lib/rubocop/cop/mixin/parentheses.rb +17 -0
  330. data/lib/rubocop/cop/mixin/parser_diagnostic.rb +37 -0
  331. data/lib/rubocop/cop/mixin/percent_array.rb +52 -0
  332. data/lib/rubocop/cop/mixin/percent_literal.rb +38 -0
  333. data/lib/rubocop/cop/mixin/preceding_following_alignment.rb +181 -0
  334. data/lib/rubocop/cop/mixin/preferred_delimiters.rb +53 -0
  335. data/lib/rubocop/cop/mixin/range_help.rb +117 -0
  336. data/lib/rubocop/cop/mixin/rescue_node.rb +22 -0
  337. data/lib/rubocop/cop/mixin/safe_assignment.rb +23 -0
  338. data/lib/rubocop/cop/mixin/safe_mode.rb +24 -0
  339. data/lib/rubocop/cop/mixin/space_after_punctuation.rb +55 -0
  340. data/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
  341. data/lib/rubocop/cop/mixin/statement_modifier.rb +68 -0
  342. data/lib/rubocop/cop/mixin/string_help.rb +35 -0
  343. data/lib/rubocop/cop/mixin/string_literals_help.rb +23 -0
  344. data/lib/rubocop/cop/mixin/surrounding_space.rb +146 -0
  345. data/lib/rubocop/cop/mixin/target_ruby_version.rb +16 -0
  346. data/lib/rubocop/cop/mixin/too_many_lines.rb +35 -0
  347. data/lib/rubocop/cop/mixin/trailing_body.rb +26 -0
  348. data/lib/rubocop/cop/mixin/trailing_comma.rb +216 -0
  349. data/lib/rubocop/cop/mixin/uncommunicative_name.rb +111 -0
  350. data/lib/rubocop/cop/mixin/unused_argument.rb +33 -0
  351. data/lib/rubocop/cop/naming/accessor_method_name.rb +55 -0
  352. data/lib/rubocop/cop/naming/ascii_identifiers.rb +72 -0
  353. data/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +43 -0
  354. data/lib/rubocop/cop/naming/class_and_module_camel_case.rb +33 -0
  355. data/lib/rubocop/cop/naming/constant_name.rb +81 -0
  356. data/lib/rubocop/cop/naming/file_name.rb +205 -0
  357. data/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +62 -0
  358. data/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
  359. data/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +171 -0
  360. data/lib/rubocop/cop/naming/method_name.rb +53 -0
  361. data/lib/rubocop/cop/naming/predicate_name.rb +108 -0
  362. data/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +112 -0
  363. data/lib/rubocop/cop/naming/uncommunicative_block_param_name.rb +49 -0
  364. data/lib/rubocop/cop/naming/uncommunicative_method_param_name.rb +58 -0
  365. data/lib/rubocop/cop/naming/variable_name.rb +52 -0
  366. data/lib/rubocop/cop/naming/variable_number.rb +61 -0
  367. data/lib/rubocop/cop/offense.rb +205 -0
  368. data/lib/rubocop/cop/registry.rb +211 -0
  369. data/lib/rubocop/cop/security/eval.rb +31 -0
  370. data/lib/rubocop/cop/security/json_load.rb +46 -0
  371. data/lib/rubocop/cop/security/marshal_load.rb +39 -0
  372. data/lib/rubocop/cop/security/open.rb +71 -0
  373. data/lib/rubocop/cop/security/yaml_load.rb +37 -0
  374. data/lib/rubocop/cop/severity.rb +77 -0
  375. data/lib/rubocop/cop/style/access_modifier_declarations.rb +112 -0
  376. data/lib/rubocop/cop/style/alias.rb +147 -0
  377. data/lib/rubocop/cop/style/and_or.rb +146 -0
  378. data/lib/rubocop/cop/style/array_join.rb +39 -0
  379. data/lib/rubocop/cop/style/ascii_comments.rb +61 -0
  380. data/lib/rubocop/cop/style/attr.rb +62 -0
  381. data/lib/rubocop/cop/style/auto_resource_cleanup.rb +51 -0
  382. data/lib/rubocop/cop/style/bare_percent_literals.rb +78 -0
  383. data/lib/rubocop/cop/style/begin_block.rb +22 -0
  384. data/lib/rubocop/cop/style/block_comments.rb +70 -0
  385. data/lib/rubocop/cop/style/block_delimiters.rb +331 -0
  386. data/lib/rubocop/cop/style/braces_around_hash_parameters.rb +209 -0
  387. data/lib/rubocop/cop/style/case_equality.rb +30 -0
  388. data/lib/rubocop/cop/style/character_literal.rb +53 -0
  389. data/lib/rubocop/cop/style/class_and_module_children.rb +151 -0
  390. data/lib/rubocop/cop/style/class_check.rb +59 -0
  391. data/lib/rubocop/cop/style/class_methods.rb +60 -0
  392. data/lib/rubocop/cop/style/class_vars.rb +48 -0
  393. data/lib/rubocop/cop/style/collection_methods.rb +77 -0
  394. data/lib/rubocop/cop/style/colon_method_call.rb +48 -0
  395. data/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
  396. data/lib/rubocop/cop/style/command_literal.rb +187 -0
  397. data/lib/rubocop/cop/style/comment_annotation.rb +97 -0
  398. data/lib/rubocop/cop/style/commented_keyword.rb +73 -0
  399. data/lib/rubocop/cop/style/conditional_assignment.rb +668 -0
  400. data/lib/rubocop/cop/style/constant_visibility.rb +77 -0
  401. data/lib/rubocop/cop/style/copyright.rb +95 -0
  402. data/lib/rubocop/cop/style/date_time.rb +77 -0
  403. data/lib/rubocop/cop/style/def_with_parentheses.rb +57 -0
  404. data/lib/rubocop/cop/style/dir.rb +48 -0
  405. data/lib/rubocop/cop/style/documentation.rb +97 -0
  406. data/lib/rubocop/cop/style/documentation_method.rb +125 -0
  407. data/lib/rubocop/cop/style/double_cop_disable_directive.rb +55 -0
  408. data/lib/rubocop/cop/style/double_negation.rb +35 -0
  409. data/lib/rubocop/cop/style/each_for_simple_loop.rb +58 -0
  410. data/lib/rubocop/cop/style/each_with_object.rb +110 -0
  411. data/lib/rubocop/cop/style/empty_block_parameter.rb +48 -0
  412. data/lib/rubocop/cop/style/empty_case_condition.rb +107 -0
  413. data/lib/rubocop/cop/style/empty_else.rb +175 -0
  414. data/lib/rubocop/cop/style/empty_lambda_parameter.rb +45 -0
  415. data/lib/rubocop/cop/style/empty_literal.rb +123 -0
  416. data/lib/rubocop/cop/style/empty_method.rb +115 -0
  417. data/lib/rubocop/cop/style/encoding.rb +56 -0
  418. data/lib/rubocop/cop/style/end_block.rb +25 -0
  419. data/lib/rubocop/cop/style/eval_with_location.rb +148 -0
  420. data/lib/rubocop/cop/style/even_odd.rb +58 -0
  421. data/lib/rubocop/cop/style/expand_path_arguments.rb +194 -0
  422. data/lib/rubocop/cop/style/float_division.rb +94 -0
  423. data/lib/rubocop/cop/style/for.rb +88 -0
  424. data/lib/rubocop/cop/style/format_string.rb +124 -0
  425. data/lib/rubocop/cop/style/format_string_token.rb +119 -0
  426. data/lib/rubocop/cop/style/frozen_string_literal_comment.rb +149 -0
  427. data/lib/rubocop/cop/style/global_vars.rb +80 -0
  428. data/lib/rubocop/cop/style/guard_clause.rb +121 -0
  429. data/lib/rubocop/cop/style/hash_syntax.rb +214 -0
  430. data/lib/rubocop/cop/style/identical_conditional_branches.rb +130 -0
  431. data/lib/rubocop/cop/style/if_inside_else.rb +87 -0
  432. data/lib/rubocop/cop/style/if_unless_modifier.rb +127 -0
  433. data/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +39 -0
  434. data/lib/rubocop/cop/style/if_with_semicolon.rb +30 -0
  435. data/lib/rubocop/cop/style/implicit_runtime_error.rb +32 -0
  436. data/lib/rubocop/cop/style/infinite_loop.rb +127 -0
  437. data/lib/rubocop/cop/style/inline_comment.rb +34 -0
  438. data/lib/rubocop/cop/style/inverse_methods.rb +187 -0
  439. data/lib/rubocop/cop/style/ip_addresses.rb +76 -0
  440. data/lib/rubocop/cop/style/lambda.rb +131 -0
  441. data/lib/rubocop/cop/style/lambda_call.rb +93 -0
  442. data/lib/rubocop/cop/style/line_end_concatenation.rb +121 -0
  443. data/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +388 -0
  444. data/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +77 -0
  445. data/lib/rubocop/cop/style/method_called_on_do_end_block.rb +46 -0
  446. data/lib/rubocop/cop/style/method_def_parentheses.rb +158 -0
  447. data/lib/rubocop/cop/style/method_missing_super.rb +34 -0
  448. data/lib/rubocop/cop/style/min_max.rb +68 -0
  449. data/lib/rubocop/cop/style/missing_else.rb +180 -0
  450. data/lib/rubocop/cop/style/missing_respond_to_missing.rb +46 -0
  451. data/lib/rubocop/cop/style/mixin_grouping.rb +148 -0
  452. data/lib/rubocop/cop/style/mixin_usage.rb +90 -0
  453. data/lib/rubocop/cop/style/module_function.rb +104 -0
  454. data/lib/rubocop/cop/style/multiline_block_chain.rb +40 -0
  455. data/lib/rubocop/cop/style/multiline_if_modifier.rb +67 -0
  456. data/lib/rubocop/cop/style/multiline_if_then.rb +50 -0
  457. data/lib/rubocop/cop/style/multiline_memoization.rb +94 -0
  458. data/lib/rubocop/cop/style/multiline_method_signature.rb +61 -0
  459. data/lib/rubocop/cop/style/multiline_ternary_operator.rb +38 -0
  460. data/lib/rubocop/cop/style/multiline_when_then.rb +55 -0
  461. data/lib/rubocop/cop/style/multiple_comparison.rb +92 -0
  462. data/lib/rubocop/cop/style/mutable_constant.rb +174 -0
  463. data/lib/rubocop/cop/style/negated_if.rb +99 -0
  464. data/lib/rubocop/cop/style/negated_unless.rb +89 -0
  465. data/lib/rubocop/cop/style/negated_while.rb +48 -0
  466. data/lib/rubocop/cop/style/nested_modifier.rb +105 -0
  467. data/lib/rubocop/cop/style/nested_parenthesized_calls.rb +67 -0
  468. data/lib/rubocop/cop/style/nested_ternary_operator.rb +32 -0
  469. data/lib/rubocop/cop/style/next.rb +244 -0
  470. data/lib/rubocop/cop/style/nil_comparison.rb +75 -0
  471. data/lib/rubocop/cop/style/non_nil_check.rb +124 -0
  472. data/lib/rubocop/cop/style/not.rb +82 -0
  473. data/lib/rubocop/cop/style/numeric_literal_prefix.rb +124 -0
  474. data/lib/rubocop/cop/style/numeric_literals.rb +110 -0
  475. data/lib/rubocop/cop/style/numeric_predicate.rb +137 -0
  476. data/lib/rubocop/cop/style/one_line_conditional.rb +101 -0
  477. data/lib/rubocop/cop/style/option_hash.rb +55 -0
  478. data/lib/rubocop/cop/style/optional_arguments.rb +58 -0
  479. data/lib/rubocop/cop/style/or_assignment.rb +95 -0
  480. data/lib/rubocop/cop/style/parallel_assignment.rb +287 -0
  481. data/lib/rubocop/cop/style/parentheses_around_condition.rb +117 -0
  482. data/lib/rubocop/cop/style/percent_literal_delimiters.rb +127 -0
  483. data/lib/rubocop/cop/style/percent_q_literals.rb +73 -0
  484. data/lib/rubocop/cop/style/perl_backrefs.rb +38 -0
  485. data/lib/rubocop/cop/style/preferred_hash_methods.rb +75 -0
  486. data/lib/rubocop/cop/style/proc.rb +34 -0
  487. data/lib/rubocop/cop/style/raise_args.rb +145 -0
  488. data/lib/rubocop/cop/style/random_with_offset.rb +158 -0
  489. data/lib/rubocop/cop/style/redundant_begin.rb +91 -0
  490. data/lib/rubocop/cop/style/redundant_conditional.rb +97 -0
  491. data/lib/rubocop/cop/style/redundant_exception.rb +60 -0
  492. data/lib/rubocop/cop/style/redundant_freeze.rb +67 -0
  493. data/lib/rubocop/cop/style/redundant_parentheses.rb +231 -0
  494. data/lib/rubocop/cop/style/redundant_return.rb +173 -0
  495. data/lib/rubocop/cop/style/redundant_self.rb +171 -0
  496. data/lib/rubocop/cop/style/redundant_sort_by.rb +50 -0
  497. data/lib/rubocop/cop/style/regexp_literal.rb +228 -0
  498. data/lib/rubocop/cop/style/rescue_modifier.rb +73 -0
  499. data/lib/rubocop/cop/style/rescue_standard_error.rb +124 -0
  500. data/lib/rubocop/cop/style/return_nil.rb +89 -0
  501. data/lib/rubocop/cop/style/safe_navigation.rb +272 -0
  502. data/lib/rubocop/cop/style/sample.rb +144 -0
  503. data/lib/rubocop/cop/style/self_assignment.rb +97 -0
  504. data/lib/rubocop/cop/style/semicolon.rb +101 -0
  505. data/lib/rubocop/cop/style/send.rb +31 -0
  506. data/lib/rubocop/cop/style/signal_exception.rb +211 -0
  507. data/lib/rubocop/cop/style/single_line_block_params.rb +95 -0
  508. data/lib/rubocop/cop/style/single_line_methods.rb +83 -0
  509. data/lib/rubocop/cop/style/special_global_vars.rb +213 -0
  510. data/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +86 -0
  511. data/lib/rubocop/cop/style/stderr_puts.rb +61 -0
  512. data/lib/rubocop/cop/style/string_hash_keys.rb +50 -0
  513. data/lib/rubocop/cop/style/string_literals.rb +129 -0
  514. data/lib/rubocop/cop/style/string_literals_in_interpolation.rb +49 -0
  515. data/lib/rubocop/cop/style/string_methods.rb +46 -0
  516. data/lib/rubocop/cop/style/strip.rb +46 -0
  517. data/lib/rubocop/cop/style/struct_inheritance.rb +39 -0
  518. data/lib/rubocop/cop/style/symbol_array.rb +119 -0
  519. data/lib/rubocop/cop/style/symbol_literal.rb +32 -0
  520. data/lib/rubocop/cop/style/symbol_proc.rb +110 -0
  521. data/lib/rubocop/cop/style/ternary_parentheses.rb +223 -0
  522. data/lib/rubocop/cop/style/trailing_body_on_class.rb +43 -0
  523. data/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +54 -0
  524. data/lib/rubocop/cop/style/trailing_body_on_module.rb +43 -0
  525. data/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +96 -0
  526. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +58 -0
  527. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +56 -0
  528. data/lib/rubocop/cop/style/trailing_method_end_statement.rb +91 -0
  529. data/lib/rubocop/cop/style/trailing_underscore_variable.rb +161 -0
  530. data/lib/rubocop/cop/style/trivial_accessors.rb +191 -0
  531. data/lib/rubocop/cop/style/unless_else.rb +55 -0
  532. data/lib/rubocop/cop/style/unneeded_capital_w.rb +51 -0
  533. data/lib/rubocop/cop/style/unneeded_condition.rb +112 -0
  534. data/lib/rubocop/cop/style/unneeded_interpolation.rb +98 -0
  535. data/lib/rubocop/cop/style/unneeded_percent_q.rb +112 -0
  536. data/lib/rubocop/cop/style/unneeded_sort.rb +165 -0
  537. data/lib/rubocop/cop/style/unpack_first.rb +65 -0
  538. data/lib/rubocop/cop/style/variable_interpolation.rb +48 -0
  539. data/lib/rubocop/cop/style/when_then.rb +37 -0
  540. data/lib/rubocop/cop/style/while_until_do.rb +59 -0
  541. data/lib/rubocop/cop/style/while_until_modifier.rb +61 -0
  542. data/lib/rubocop/cop/style/word_array.rb +102 -0
  543. data/lib/rubocop/cop/style/yoda_condition.rb +141 -0
  544. data/lib/rubocop/cop/style/zero_length_predicate.rb +117 -0
  545. data/lib/rubocop/cop/team.rb +191 -0
  546. data/lib/rubocop/cop/util.rb +127 -0
  547. data/lib/rubocop/cop/utils/format_string.rb +128 -0
  548. data/lib/rubocop/cop/variable_force.rb +464 -0
  549. data/lib/rubocop/cop/variable_force/assignment.rb +96 -0
  550. data/lib/rubocop/cop/variable_force/branch.rb +322 -0
  551. data/lib/rubocop/cop/variable_force/branchable.rb +23 -0
  552. data/lib/rubocop/cop/variable_force/reference.rb +49 -0
  553. data/lib/rubocop/cop/variable_force/scope.rb +109 -0
  554. data/lib/rubocop/cop/variable_force/variable.rb +117 -0
  555. data/lib/rubocop/cop/variable_force/variable_table.rb +129 -0
  556. data/lib/rubocop/core_ext/string.rb +23 -0
  557. data/lib/rubocop/error.rb +34 -0
  558. data/lib/rubocop/file_finder.rb +42 -0
  559. data/lib/rubocop/formatter/auto_gen_config_formatter.rb +16 -0
  560. data/lib/rubocop/formatter/base_formatter.rb +123 -0
  561. data/lib/rubocop/formatter/clang_style_formatter.rb +59 -0
  562. data/lib/rubocop/formatter/colorizable.rb +41 -0
  563. data/lib/rubocop/formatter/disabled_config_formatter.rb +224 -0
  564. data/lib/rubocop/formatter/disabled_lines_formatter.rb +57 -0
  565. data/lib/rubocop/formatter/emacs_style_formatter.rb +37 -0
  566. data/lib/rubocop/formatter/file_list_formatter.rb +20 -0
  567. data/lib/rubocop/formatter/formatter_set.rb +106 -0
  568. data/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
  569. data/lib/rubocop/formatter/html_formatter.rb +141 -0
  570. data/lib/rubocop/formatter/json_formatter.rb +80 -0
  571. data/lib/rubocop/formatter/offense_count_formatter.rb +74 -0
  572. data/lib/rubocop/formatter/pacman_formatter.rb +80 -0
  573. data/lib/rubocop/formatter/progress_formatter.rb +63 -0
  574. data/lib/rubocop/formatter/quiet_formatter.rb +13 -0
  575. data/lib/rubocop/formatter/simple_text_formatter.rb +138 -0
  576. data/lib/rubocop/formatter/tap_formatter.rb +84 -0
  577. data/lib/rubocop/formatter/text_util.rb +20 -0
  578. data/lib/rubocop/formatter/worst_offenders_formatter.rb +62 -0
  579. data/lib/rubocop/magic_comment.rb +214 -0
  580. data/lib/rubocop/name_similarity.rb +21 -0
  581. data/lib/rubocop/node_pattern.rb +799 -0
  582. data/lib/rubocop/options.rb +454 -0
  583. data/lib/rubocop/path_util.rb +85 -0
  584. data/lib/rubocop/platform.rb +11 -0
  585. data/lib/rubocop/processed_source.rb +216 -0
  586. data/lib/rubocop/rake_task.rb +79 -0
  587. data/lib/rubocop/remote_config.rb +106 -0
  588. data/lib/rubocop/result_cache.rb +191 -0
  589. data/lib/rubocop/rspec/cop_helper.rb +94 -0
  590. data/lib/rubocop/rspec/expect_offense.rb +240 -0
  591. data/lib/rubocop/rspec/host_environment_simulation_helper.rb +28 -0
  592. data/lib/rubocop/rspec/shared_contexts.rb +90 -0
  593. data/lib/rubocop/rspec/support.rb +13 -0
  594. data/lib/rubocop/runner.rb +358 -0
  595. data/lib/rubocop/string_interpreter.rb +57 -0
  596. data/lib/rubocop/string_util.rb +14 -0
  597. data/lib/rubocop/target_finder.rb +190 -0
  598. data/lib/rubocop/token.rb +114 -0
  599. data/lib/rubocop/version.rb +21 -0
  600. data/lib/rubocop/warning.rb +11 -0
  601. data/lib/rubocop/yaml_duplication_checker.rb +39 -0
  602. metadata +770 -0
@@ -0,0 +1,127 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ # This module contains a collection of useful utility methods.
6
+ module Util
7
+ include PathUtil
8
+
9
+ # Match literal regex characters, not including anchors, character
10
+ # classes, alternatives, groups, repetitions, references, etc
11
+ LITERAL_REGEX =
12
+ /[\w\s\-,"'!#%&<>=;:`~]|\\[^AbBdDgGhHkpPRwWXsSzZ0-9]/.freeze
13
+
14
+ module_function
15
+
16
+ def comment_line?(line_source)
17
+ line_source =~ /^\s*#/
18
+ end
19
+
20
+ def line_range(node)
21
+ node.first_line..node.last_line
22
+ end
23
+
24
+ def parentheses?(node)
25
+ node.loc.respond_to?(:end) && node.loc.end &&
26
+ node.loc.end.is?(')')
27
+ end
28
+
29
+ def on_node(syms, sexp, excludes = [], &block)
30
+ return to_enum(:on_node, syms, sexp, excludes) unless block_given?
31
+
32
+ yield sexp if Array(syms).include?(sexp.type)
33
+ return if Array(excludes).include?(sexp.type)
34
+
35
+ sexp.each_child_node { |elem| on_node(syms, elem, excludes, &block) }
36
+ end
37
+
38
+ def begins_its_line?(range)
39
+ (range.source_line =~ /\S/) == range.column
40
+ end
41
+
42
+ # Returns, for example, a bare `if` node if the given node is an `if`
43
+ # with calls chained to the end of it.
44
+ def first_part_of_call_chain(node)
45
+ while node
46
+ case node.type
47
+ when :send
48
+ node = node.receiver
49
+ when :block
50
+ node = node.send_node
51
+ else
52
+ break
53
+ end
54
+ end
55
+ node
56
+ end
57
+
58
+ # If converting a string to Ruby string literal source code, must
59
+ # double quotes be used?
60
+ def double_quotes_required?(string)
61
+ # Double quotes are required for strings which either:
62
+ # - Contain single quotes
63
+ # - Contain non-printable characters, which must use an escape
64
+
65
+ # Regex matches IF there is a ' or there is a \\ in the string that is
66
+ # not preceded/followed by another \\ (e.g. "\\x34") but not "\\\\".
67
+ string =~ /'|(?<! \\) \\{2}* \\ (?![\\"])/x
68
+ end
69
+
70
+ def needs_escaping?(string)
71
+ double_quotes_required?(escape_string(string))
72
+ end
73
+
74
+ def escape_string(string)
75
+ string.inspect[1..-2].tap { |s| s.gsub!(/\\"/, '"') }
76
+ end
77
+
78
+ def to_string_literal(string)
79
+ if needs_escaping?(string) && compatible_external_encoding_for?(string)
80
+ string.inspect
81
+ else
82
+ "'#{string.gsub('\\') { '\\\\' }}'"
83
+ end
84
+ end
85
+
86
+ def trim_string_interporation_escape_character(str)
87
+ str.gsub(/\\\#{(.*?)\}/) { "\#{#{Regexp.last_match(1)}}" }
88
+ end
89
+
90
+ def interpret_string_escapes(string)
91
+ StringInterpreter.interpret(string)
92
+ end
93
+
94
+ def same_line?(node1, node2)
95
+ node1.respond_to?(:loc) &&
96
+ node2.respond_to?(:loc) &&
97
+ node1.loc.line == node2.loc.line
98
+ end
99
+
100
+ def to_supported_styles(enforced_style)
101
+ enforced_style
102
+ .sub(/^Enforced/, 'Supported')
103
+ .sub('Style', 'Styles')
104
+ end
105
+
106
+ def tokens(node)
107
+ @tokens ||= {}
108
+ return @tokens[node.object_id] if @tokens[node.object_id]
109
+
110
+ source_range = node.source_range
111
+ begin_pos = source_range.begin_pos
112
+ end_pos = source_range.end_pos
113
+
114
+ @tokens[node.object_id] = processed_source.tokens.select do |token|
115
+ token.end_pos <= end_pos && token.begin_pos >= begin_pos
116
+ end
117
+ end
118
+
119
+ private
120
+
121
+ def compatible_external_encoding_for?(src)
122
+ src = src.dup if RUBY_ENGINE == 'jruby'
123
+ src.force_encoding(Encoding.default_external).valid_encoding?
124
+ end
125
+ end
126
+ end
127
+ end
@@ -0,0 +1,128 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ module Utils
6
+ # Parses {Kernel#sprintf} format strings.
7
+ class FormatString
8
+ DIGIT_DOLLAR = /(\d+)\$/.freeze
9
+ FLAG = /[ #0+-]|#{DIGIT_DOLLAR}/.freeze
10
+ NUMBER_ARG = /\*#{DIGIT_DOLLAR}?/.freeze
11
+ NUMBER = /\d+|#{NUMBER_ARG}/.freeze
12
+ WIDTH = /(?<width>#{NUMBER})/.freeze
13
+ PRECISION = /\.(?<precision>#{NUMBER})/.freeze
14
+ TYPE = /(?<type>[bBdiouxXeEfgGaAcps])/.freeze
15
+ NAME = /<(?<name>\w+)>/.freeze
16
+ TEMPLATE_NAME = /\{(?<name>\w+)\}/.freeze
17
+
18
+ SEQUENCE = /
19
+ % (?<type>%)
20
+ | % (?<flags>#{FLAG}*)
21
+ (?:
22
+ (?: #{WIDTH}? #{PRECISION}? #{NAME}?
23
+ | #{WIDTH}? #{NAME} #{PRECISION}?
24
+ | #{NAME} (?<more_flags>#{FLAG}*) #{WIDTH}? #{PRECISION}?
25
+ ) #{TYPE}
26
+ | #{WIDTH}? #{PRECISION}? #{TEMPLATE_NAME}
27
+ )
28
+ /x.freeze
29
+
30
+ # The syntax of a format sequence is as follows.
31
+ #
32
+ # ```
33
+ # %[flags][width][.precision]type
34
+ # ```
35
+ #
36
+ # A format sequence consists of a percent sign, followed by optional
37
+ # flags, width, and precision indicators, then terminated with a field
38
+ # type character.
39
+ #
40
+ # For more complex formatting, Ruby supports a reference by name.
41
+ #
42
+ # @see https://ruby-doc.org/core-2.6.3/Kernel.html#method-i-format
43
+ class FormatSequence
44
+ attr_reader :begin_pos, :end_pos
45
+ attr_reader :flags, :width, :precision, :name, :type
46
+
47
+ def initialize(string, **opts)
48
+ @source = string
49
+ @begin_pos = opts[:begin_pos]
50
+ @end_pos = opts[:end_pos]
51
+ @flags = opts[:flags]
52
+ @width = opts[:width]
53
+ @precision = opts[:precision]
54
+ @name = opts[:name]
55
+ @type = opts[:type]
56
+ end
57
+
58
+ def percent?
59
+ type == '%'
60
+ end
61
+
62
+ def annotated?
63
+ name && @source.include?('<')
64
+ end
65
+
66
+ def template?
67
+ name && @source.include?('{')
68
+ end
69
+
70
+ # Number of arguments required for the format sequence
71
+ def arity
72
+ @source.scan('*').count + 1
73
+ end
74
+
75
+ def max_digit_dollar_num
76
+ @source.scan(DIGIT_DOLLAR).map do |(digit_dollar_num)|
77
+ digit_dollar_num.to_i
78
+ end.max
79
+ end
80
+
81
+ def style
82
+ if annotated?
83
+ :annotated
84
+ elsif template?
85
+ :template
86
+ else
87
+ :unannotated
88
+ end
89
+ end
90
+ end
91
+
92
+ def initialize(string)
93
+ @source = string
94
+ end
95
+
96
+ def format_sequences
97
+ @format_sequences ||= parse
98
+ end
99
+
100
+ def named_interpolation?
101
+ format_sequences.any?(&:name)
102
+ end
103
+
104
+ def max_digit_dollar_num
105
+ format_sequences.map(&:max_digit_dollar_num).max
106
+ end
107
+
108
+ private
109
+
110
+ def parse
111
+ @source.to_enum(:scan, SEQUENCE).map do
112
+ match = Regexp.last_match
113
+ FormatSequence.new(
114
+ match[0],
115
+ begin_pos: match.begin(0),
116
+ end_pos: match.end(0),
117
+ flags: match[:flags].to_s + match[:more_flags].to_s,
118
+ width: match[:width],
119
+ precision: match[:precision],
120
+ name: match[:name],
121
+ type: match[:type]
122
+ )
123
+ end
124
+ end
125
+ end
126
+ end
127
+ end
128
+ end
@@ -0,0 +1,464 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module Cop
5
+ # This force provides a way to track local variables and scopes of Ruby.
6
+ # Cops interact with this force need to override some of the hook methods.
7
+ #
8
+ # def before_entering_scope(scope, variable_table)
9
+ # end
10
+ #
11
+ # def after_entering_scope(scope, variable_table)
12
+ # end
13
+ #
14
+ # def before_leaving_scope(scope, variable_table)
15
+ # end
16
+ #
17
+ # def after_leaving_scope(scope, variable_table)
18
+ # end
19
+ #
20
+ # def before_declaring_variable(variable, variable_table)
21
+ # end
22
+ #
23
+ # def after_declaring_variable(variable, variable_table)
24
+ # end
25
+ class VariableForce < Force # rubocop:disable Metrics/ClassLength
26
+ VARIABLE_ASSIGNMENT_TYPE = :lvasgn
27
+ REGEXP_NAMED_CAPTURE_TYPE = :match_with_lvasgn
28
+ VARIABLE_ASSIGNMENT_TYPES =
29
+ [VARIABLE_ASSIGNMENT_TYPE, REGEXP_NAMED_CAPTURE_TYPE].freeze
30
+
31
+ ARGUMENT_DECLARATION_TYPES = [
32
+ :arg, :optarg, :restarg,
33
+ :kwarg, :kwoptarg, :kwrestarg,
34
+ :blockarg, # This doesn't mean block argument, it's block-pass (&block).
35
+ :shadowarg # This means block local variable (obj.each { |arg; this| }).
36
+ ].freeze
37
+
38
+ LOGICAL_OPERATOR_ASSIGNMENT_TYPES = %i[or_asgn and_asgn].freeze
39
+ OPERATOR_ASSIGNMENT_TYPES =
40
+ (LOGICAL_OPERATOR_ASSIGNMENT_TYPES + [:op_asgn]).freeze
41
+
42
+ MULTIPLE_ASSIGNMENT_TYPE = :masgn
43
+
44
+ VARIABLE_REFERENCE_TYPE = :lvar
45
+
46
+ POST_CONDITION_LOOP_TYPES = %i[while_post until_post].freeze
47
+ LOOP_TYPES = (POST_CONDITION_LOOP_TYPES + %i[while until for]).freeze
48
+
49
+ RESCUE_TYPE = :rescue
50
+
51
+ ZERO_ARITY_SUPER_TYPE = :zsuper
52
+
53
+ TWISTED_SCOPE_TYPES = %i[block class sclass defs module].freeze
54
+ SCOPE_TYPES = (TWISTED_SCOPE_TYPES + [:def]).freeze
55
+
56
+ SEND_TYPE = :send
57
+
58
+ VariableReference = Struct.new(:name) do
59
+ def assignment?
60
+ false
61
+ end
62
+ end
63
+
64
+ AssignmentReference = Struct.new(:node) do
65
+ def assignment?
66
+ true
67
+ end
68
+ end
69
+
70
+ def variable_table
71
+ @variable_table ||= VariableTable.new(self)
72
+ end
73
+
74
+ # Starting point.
75
+ def investigate(processed_source)
76
+ root_node = processed_source.ast
77
+ return unless root_node
78
+
79
+ variable_table.push_scope(root_node)
80
+ process_node(root_node)
81
+ variable_table.pop_scope
82
+ end
83
+
84
+ def process_node(node)
85
+ method_name = node_handler_method_name(node)
86
+ retval = send(method_name, node) if method_name
87
+ process_children(node) unless retval == :skip_children
88
+ end
89
+
90
+ private
91
+
92
+ # This is called for each scope recursively.
93
+ def inspect_variables_in_scope(scope_node)
94
+ variable_table.push_scope(scope_node)
95
+ process_children(scope_node)
96
+ variable_table.pop_scope
97
+ end
98
+
99
+ def process_children(origin_node)
100
+ origin_node.each_child_node do |child_node|
101
+ next if scanned_node?(child_node)
102
+
103
+ process_node(child_node)
104
+ end
105
+ end
106
+
107
+ def skip_children!
108
+ :skip_children
109
+ end
110
+
111
+ # rubocop:disable Metrics/MethodLength, Metrics/CyclomaticComplexity
112
+ def node_handler_method_name(node)
113
+ case node.type
114
+ when VARIABLE_ASSIGNMENT_TYPE
115
+ :process_variable_assignment
116
+ when REGEXP_NAMED_CAPTURE_TYPE
117
+ :process_regexp_named_captures
118
+ when MULTIPLE_ASSIGNMENT_TYPE
119
+ :process_variable_multiple_assignment
120
+ when VARIABLE_REFERENCE_TYPE
121
+ :process_variable_referencing
122
+ when RESCUE_TYPE
123
+ :process_rescue
124
+ when ZERO_ARITY_SUPER_TYPE
125
+ :process_zero_arity_super
126
+ when SEND_TYPE
127
+ :process_send
128
+ when *ARGUMENT_DECLARATION_TYPES
129
+ :process_variable_declaration
130
+ when *OPERATOR_ASSIGNMENT_TYPES
131
+ :process_variable_operator_assignment
132
+ when *LOOP_TYPES
133
+ :process_loop
134
+ when *SCOPE_TYPES
135
+ :process_scope
136
+ end
137
+ end
138
+ # rubocop:enable Metrics/MethodLength, Metrics/CyclomaticComplexity
139
+
140
+ def process_variable_declaration(node)
141
+ variable_name = node.children.first
142
+
143
+ # restarg and kwrestarg would have no name:
144
+ #
145
+ # def initialize(*)
146
+ # end
147
+ return unless variable_name
148
+
149
+ variable_table.declare_variable(variable_name, node)
150
+ end
151
+
152
+ def process_variable_assignment(node)
153
+ name = node.children.first
154
+
155
+ unless variable_table.variable_exist?(name)
156
+ variable_table.declare_variable(name, node)
157
+ end
158
+
159
+ # Need to scan rhs before assignment so that we can mark previous
160
+ # assignments as referenced if rhs has referencing to the variable
161
+ # itself like:
162
+ #
163
+ # foo = 1
164
+ # foo = foo + 1
165
+ process_children(node)
166
+
167
+ variable_table.assign_to_variable(name, node)
168
+
169
+ skip_children!
170
+ end
171
+
172
+ def process_regexp_named_captures(node)
173
+ regexp_node, rhs_node = *node
174
+ variable_names = regexp_captured_names(regexp_node)
175
+
176
+ variable_names.each do |name|
177
+ next if variable_table.variable_exist?(name)
178
+
179
+ variable_table.declare_variable(name, node)
180
+ end
181
+
182
+ process_node(rhs_node)
183
+ process_node(regexp_node)
184
+
185
+ variable_names.each do |name|
186
+ variable_table.assign_to_variable(name, node)
187
+ end
188
+
189
+ skip_children!
190
+ end
191
+
192
+ def regexp_captured_names(node)
193
+ regexp_string = node.children[0].children[0] || ''
194
+ regexp = Regexp.new(regexp_string)
195
+
196
+ regexp.named_captures.keys
197
+ end
198
+
199
+ # rubocop:disable Metrics/AbcSize
200
+ def process_variable_operator_assignment(node)
201
+ if LOGICAL_OPERATOR_ASSIGNMENT_TYPES.include?(node.type)
202
+ asgn_node, rhs_node = *node
203
+ else
204
+ asgn_node, _operator, rhs_node = *node
205
+ end
206
+
207
+ return unless asgn_node.lvasgn_type?
208
+
209
+ name = asgn_node.children.first
210
+
211
+ unless variable_table.variable_exist?(name)
212
+ variable_table.declare_variable(name, asgn_node)
213
+ end
214
+
215
+ # The following statements:
216
+ #
217
+ # foo = 1
218
+ # foo += foo = 2
219
+ # # => 3
220
+ #
221
+ # are equivalent to:
222
+ #
223
+ # foo = 1
224
+ # foo = foo + (foo = 2)
225
+ # # => 3
226
+ #
227
+ # So, at operator assignment node, we need to reference the variable
228
+ # before processing rhs nodes.
229
+
230
+ variable_table.reference_variable(name, node)
231
+ process_node(rhs_node)
232
+ variable_table.assign_to_variable(name, asgn_node)
233
+
234
+ skip_children!
235
+ end
236
+ # rubocop:enable Metrics/AbcSize
237
+
238
+ def process_variable_multiple_assignment(node)
239
+ lhs_node, rhs_node = *node
240
+ process_node(rhs_node)
241
+ process_node(lhs_node)
242
+ skip_children!
243
+ end
244
+
245
+ def process_variable_referencing(node)
246
+ name = node.children.first
247
+ variable_table.reference_variable(name, node)
248
+ end
249
+
250
+ def process_loop(node)
251
+ if POST_CONDITION_LOOP_TYPES.include?(node.type)
252
+ # See the comment at the end of file for this behavior.
253
+ condition_node, body_node = *node
254
+ process_node(body_node)
255
+ process_node(condition_node)
256
+ else
257
+ process_children(node)
258
+ end
259
+
260
+ mark_assignments_as_referenced_in_loop(node)
261
+
262
+ skip_children!
263
+ end
264
+
265
+ def process_rescue(node)
266
+ resbody_nodes = node.each_child_node(:resbody)
267
+
268
+ contain_retry = resbody_nodes.any? do |resbody_node|
269
+ resbody_node.each_descendant.any?(&:retry_type?)
270
+ end
271
+
272
+ # Treat begin..rescue..end with retry as a loop.
273
+ process_loop(node) if contain_retry
274
+ end
275
+
276
+ def process_zero_arity_super(node)
277
+ variable_table.accessible_variables.each do |variable|
278
+ next unless variable.method_argument?
279
+
280
+ variable.reference!(node)
281
+ end
282
+ end
283
+
284
+ def process_scope(node)
285
+ if TWISTED_SCOPE_TYPES.include?(node.type)
286
+ # See the comment at the end of file for this behavior.
287
+ twisted_nodes = [node.children[0]]
288
+ twisted_nodes << node.children[1] if node.class_type?
289
+ twisted_nodes.compact!
290
+
291
+ twisted_nodes.each do |twisted_node|
292
+ process_node(twisted_node)
293
+ scanned_nodes << twisted_node
294
+ end
295
+ end
296
+
297
+ inspect_variables_in_scope(node)
298
+ skip_children!
299
+ end
300
+
301
+ def process_send(node)
302
+ _receiver, method_name, args = *node
303
+ return unless method_name == :binding
304
+ return if args && !args.children.empty?
305
+
306
+ variable_table.accessible_variables.each do |variable|
307
+ variable.reference!(node)
308
+ end
309
+ end
310
+
311
+ # Mark all assignments which are referenced in the same loop
312
+ # as referenced by ignoring AST order since they would be referenced
313
+ # in next iteration.
314
+ def mark_assignments_as_referenced_in_loop(node)
315
+ referenced_variable_names_in_loop, assignment_nodes_in_loop =
316
+ find_variables_in_loop(node)
317
+
318
+ referenced_variable_names_in_loop.each do |name|
319
+ variable = variable_table.find_variable(name)
320
+ # Non related references which are caught in the above scan
321
+ # would be skipped here.
322
+ next unless variable
323
+
324
+ variable.assignments.each do |assignment|
325
+ next if assignment_nodes_in_loop.none? do |assignment_node|
326
+ assignment_node.equal?(assignment.node)
327
+ end
328
+
329
+ assignment.reference!(node)
330
+ end
331
+ end
332
+ end
333
+
334
+ def find_variables_in_loop(loop_node)
335
+ referenced_variable_names_in_loop = []
336
+ assignment_nodes_in_loop = []
337
+
338
+ each_descendant_reference(loop_node) do |reference|
339
+ if reference.assignment?
340
+ assignment_nodes_in_loop << reference.node
341
+ else
342
+ referenced_variable_names_in_loop << reference.name
343
+ end
344
+ end
345
+
346
+ [referenced_variable_names_in_loop, assignment_nodes_in_loop]
347
+ end
348
+
349
+ def each_descendant_reference(loop_node)
350
+ # #each_descendant does not consider scope,
351
+ # but we don't need to care about it here.
352
+ loop_node.each_descendant do |node|
353
+ reference = descendant_reference(node)
354
+
355
+ yield reference if reference
356
+ end
357
+ end
358
+
359
+ def descendant_reference(node)
360
+ case node.type
361
+ when :lvar
362
+ VariableReference.new(node.children.first)
363
+ when :lvasgn
364
+ AssignmentReference.new(node)
365
+ when *OPERATOR_ASSIGNMENT_TYPES
366
+ asgn_node = node.children.first
367
+ if asgn_node.lvasgn_type?
368
+ VariableReference.new(asgn_node.children.first)
369
+ end
370
+ end
371
+ end
372
+
373
+ # Use Node#equal? for accurate check.
374
+ def scanned_node?(node)
375
+ scanned_nodes.any? do |scanned_node|
376
+ scanned_node.equal?(node)
377
+ end
378
+ end
379
+
380
+ def scanned_nodes
381
+ @scanned_nodes ||= []
382
+ end
383
+
384
+ # Hooks invoked by VariableTable.
385
+ %i[
386
+ before_entering_scope
387
+ after_entering_scope
388
+ before_leaving_scope
389
+ after_leaving_scope
390
+ before_declaring_variable
391
+ after_declaring_variable
392
+ ].each do |hook|
393
+ define_method(hook) do |arg|
394
+ # Invoke hook in cops.
395
+ run_hook(hook, arg, variable_table)
396
+ end
397
+ end
398
+
399
+ # Post condition loops
400
+ #
401
+ # Loop body nodes need to be scanned first.
402
+ #
403
+ # Ruby:
404
+ # begin
405
+ # foo = 1
406
+ # end while foo > 10
407
+ # puts foo
408
+ #
409
+ # AST:
410
+ # (begin
411
+ # (while-post
412
+ # (send
413
+ # (lvar :foo) :>
414
+ # (int 10))
415
+ # (kwbegin
416
+ # (lvasgn :foo
417
+ # (int 1))))
418
+ # (send nil :puts
419
+ # (lvar :foo)))
420
+
421
+ # Twisted scope types
422
+ #
423
+ # The variable foo belongs to the top level scope,
424
+ # but in AST, it's under the block node.
425
+ #
426
+ # Ruby:
427
+ # some_method(foo = 1) do
428
+ # end
429
+ # puts foo
430
+ #
431
+ # AST:
432
+ # (begin
433
+ # (block
434
+ # (send nil :some_method
435
+ # (lvasgn :foo
436
+ # (int 1)))
437
+ # (args) nil)
438
+ # (send nil :puts
439
+ # (lvar :foo)))
440
+ #
441
+ # So the method argument nodes need to be processed
442
+ # in current scope.
443
+ #
444
+ # Same thing.
445
+ #
446
+ # Ruby:
447
+ # instance = Object.new
448
+ # class << instance
449
+ # foo = 1
450
+ # end
451
+ #
452
+ # AST:
453
+ # (begin
454
+ # (lvasgn :instance
455
+ # (send
456
+ # (const nil :Object) :new))
457
+ # (sclass
458
+ # (lvar :instance)
459
+ # (begin
460
+ # (lvasgn :foo
461
+ # (int 1))
462
+ end
463
+ end
464
+ end