rubocop 1.25.0 → 1.26.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/config/default.yml +25 -15
  4. data/lib/rubocop/cli.rb +1 -1
  5. data/lib/rubocop/cop/badge.rb +7 -1
  6. data/lib/rubocop/cop/gemspec/require_mfa.rb +4 -3
  7. data/lib/rubocop/cop/generator.rb +2 -7
  8. data/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -0
  9. data/lib/rubocop/cop/internal_affairs.rb +1 -0
  10. data/lib/rubocop/cop/layout/case_indentation.rb +1 -1
  11. data/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +5 -1
  12. data/lib/rubocop/cop/layout/hash_alignment.rb +6 -1
  13. data/lib/rubocop/cop/layout/multiline_operation_indentation.rb +7 -8
  14. data/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +1 -1
  15. data/lib/rubocop/cop/lint/inherit_exception.rb +19 -28
  16. data/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +3 -2
  17. data/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +5 -0
  18. data/lib/rubocop/cop/lint/symbol_conversion.rb +3 -2
  19. data/lib/rubocop/cop/lint/useless_times.rb +13 -9
  20. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +27 -13
  21. data/lib/rubocop/cop/mixin/line_length_help.rb +17 -6
  22. data/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +3 -1
  23. data/lib/rubocop/cop/naming/method_parameter_name.rb +1 -1
  24. data/lib/rubocop/cop/security/yaml_load.rb +9 -3
  25. data/lib/rubocop/cop/style/def_with_parentheses.rb +16 -11
  26. data/lib/rubocop/cop/style/for.rb +4 -0
  27. data/lib/rubocop/cop/style/lambda_call.rb +12 -20
  28. data/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +11 -5
  29. data/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
  30. data/lib/rubocop/cop/style/optional_boolean_parameter.rb +3 -2
  31. data/lib/rubocop/cop/style/redundant_begin.rb +2 -6
  32. data/lib/rubocop/cop/style/select_by_regexp.rb +6 -1
  33. data/lib/rubocop/cop/style/sole_nested_conditional.rb +50 -12
  34. data/lib/rubocop/cop/style/string_concatenation.rb +7 -1
  35. data/lib/rubocop/cop/style/swap_values.rb +2 -0
  36. data/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +1 -1
  37. data/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +1 -1
  38. data/lib/rubocop/cop/style/unless_else.rb +4 -0
  39. data/lib/rubocop/cop/variable_force.rb +1 -5
  40. data/lib/rubocop/cops_documentation_generator.rb +2 -2
  41. data/lib/rubocop/formatter/disabled_config_formatter.rb +16 -2
  42. data/lib/rubocop/options.rb +8 -2
  43. data/lib/rubocop/rspec/shared_contexts.rb +4 -0
  44. data/lib/rubocop/runner.rb +1 -1
  45. data/lib/rubocop/target_ruby.rb +1 -1
  46. data/lib/rubocop/version.rb +1 -1
  47. data/lib/rubocop.rb +1 -0
  48. metadata +7 -5
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bozhidar Batsov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-01-18 00:00:00.000000000 Z
13
+ date: 2022-03-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: parallel
@@ -100,7 +100,7 @@ dependencies:
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: 1.15.1
103
+ version: 1.16.0
104
104
  - - "<"
105
105
  - !ruby/object:Gem::Version
106
106
  version: '2.0'
@@ -110,7 +110,7 @@ dependencies:
110
110
  requirements:
111
111
  - - ">="
112
112
  - !ruby/object:Gem::Version
113
- version: 1.15.1
113
+ version: 1.16.0
114
114
  - - "<"
115
115
  - !ruby/object:Gem::Version
116
116
  version: '2.0'
@@ -269,6 +269,7 @@ files:
269
269
  - lib/rubocop/cop/internal_affairs/node_matcher_directive.rb
270
270
  - lib/rubocop/cop/internal_affairs/node_type_predicate.rb
271
271
  - lib/rubocop/cop/internal_affairs/offense_location_keyword.rb
272
+ - lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb
272
273
  - lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb
273
274
  - lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb
274
275
  - lib/rubocop/cop/internal_affairs/redundant_location_argument.rb
@@ -737,6 +738,7 @@ files:
737
738
  - lib/rubocop/cop/style/negated_if_else_condition.rb
738
739
  - lib/rubocop/cop/style/negated_unless.rb
739
740
  - lib/rubocop/cop/style/negated_while.rb
741
+ - lib/rubocop/cop/style/nested_file_dirname.rb
740
742
  - lib/rubocop/cop/style/nested_modifier.rb
741
743
  - lib/rubocop/cop/style/nested_parenthesized_calls.rb
742
744
  - lib/rubocop/cop/style/nested_ternary_operator.rb
@@ -911,7 +913,7 @@ metadata:
911
913
  homepage_uri: https://rubocop.org/
912
914
  changelog_uri: https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md
913
915
  source_code_uri: https://github.com/rubocop/rubocop/
914
- documentation_uri: https://docs.rubocop.org/rubocop/1.25/
916
+ documentation_uri: https://docs.rubocop.org/rubocop/1.26/
915
917
  bug_tracker_uri: https://github.com/rubocop/rubocop/issues
916
918
  rubygems_mfa_required: 'true'
917
919
  post_install_message: