File tree Expand file tree Collapse file tree 4 files changed +27
-21
lines changed Expand file tree Collapse file tree 4 files changed +27
-21
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ * Updates rubocop to [ 1.67.0] ( https://github.com/rubocop/rubocop/releases/tag/v1.67.0 )
6
+
5
7
## 1.41.1
6
8
7
9
* Adds a stub method to the Ruby LSP add-on to avoid a potential runtime exception
Original file line number Diff line number Diff line change 4
4
standard (1.41.1 )
5
5
language_server-protocol (~> 3.17.0.2 )
6
6
lint_roller (~> 1.0 )
7
- rubocop (~> 1.66 .0 )
7
+ rubocop (~> 1.67 .0 )
8
8
standard-custom (~> 1.0.0 )
9
9
standard-performance (~> 1.5 )
10
10
13
13
specs:
14
14
ast (2.4.2 )
15
15
docile (1.4.0 )
16
- json (2.6.3 )
16
+ json (2.7.4 )
17
17
language_server-protocol (3.17.0.3 )
18
18
lint_roller (1.1.0 )
19
19
logger (1.6.0 )
23
23
method_source (1.0.0 )
24
24
minitest (5.20.0 )
25
25
mutex_m (0.2.0 )
26
- parallel (1.23.0 )
26
+ parallel (1.26.3 )
27
27
parser (3.3.5.0 )
28
28
ast (~> 2.4.1 )
29
29
racc
30
30
prism (0.30.0 )
31
- racc (1.7 .1 )
31
+ racc (1.8 .1 )
32
32
rainbow (3.1.1 )
33
33
rake (13.0.6 )
34
34
rbs (3.5.2 )
35
35
logger
36
- regexp_parser (2.8 .2 )
37
- rubocop (1.66.1 )
36
+ regexp_parser (2.9 .2 )
37
+ rubocop (1.67.0 )
38
38
json (~> 2.3 )
39
39
language_server-protocol (>= 3.17.0 )
40
40
parallel (~> 1.10 )
68
68
standard-performance (1.5.0 )
69
69
lint_roller (~> 1.1 )
70
70
rubocop-performance (~> 1.22.0 )
71
- unicode-display_width (2.5 .0 )
71
+ unicode-display_width (2.6 .0 )
72
72
73
73
PLATFORMS
74
74
ruby
Original file line number Diff line number Diff line change 1
1
Bundler/DuplicatedGem :
2
2
Enabled : true
3
3
Include :
4
- - ' **/*.gemfile'
5
- - ' **/Gemfile'
6
- - ' **/gems.rb'
4
+ - " **/*.gemfile"
5
+ - " **/Gemfile"
6
+ - " **/gems.rb"
7
7
8
8
Bundler/DuplicatedGroup :
9
9
Enabled : false
@@ -20,9 +20,9 @@ Bundler/GemVersion:
20
20
Bundler/InsecureProtocolSource :
21
21
Enabled : true
22
22
Include :
23
- - ' **/*.gemfile'
24
- - ' **/Gemfile'
25
- - ' **/gems.rb'
23
+ - " **/*.gemfile"
24
+ - " **/Gemfile"
25
+ - " **/gems.rb"
26
26
27
27
Bundler/OrderedGems :
28
28
Enabled : false
@@ -42,7 +42,7 @@ Gemspec/DevelopmentDependencies:
42
42
Gemspec/DuplicatedAssignment :
43
43
Enabled : true
44
44
Include :
45
- - ' **/*.gemspec'
45
+ - " **/*.gemspec"
46
46
47
47
Gemspec/OrderedDependencies :
48
48
Enabled : false
@@ -243,6 +243,7 @@ Layout/InitialIndentation:
243
243
244
244
Layout/LeadingCommentSpace :
245
245
Enabled : true
246
+ AllowRBSInlineAnnotation : true
246
247
247
248
Layout/LeadingEmptyLines :
248
249
Enabled : true
@@ -512,6 +513,9 @@ Lint/DuplicateRequire:
512
513
Lint/DuplicateRescueException :
513
514
Enabled : true
514
515
516
+ Lint/DuplicateSetElement :
517
+ Enabled : true
518
+
515
519
Lint/EachWithObjectArgument :
516
520
Enabled : true
517
521
@@ -1177,7 +1181,7 @@ Style/EvenOdd:
1177
1181
Enabled : false
1178
1182
1179
1183
Style/ExactRegexpMatch :
1180
- Enabled : true
1184
+ Enabled : true
1181
1185
Style/ExpandPathArguments :
1182
1186
Enabled : false
1183
1187
@@ -1495,11 +1499,11 @@ Style/PercentLiteralDelimiters:
1495
1499
Enabled : true
1496
1500
PreferredDelimiters :
1497
1501
default : ()
1498
- ' %i ' : ' [] '
1499
- ' %I ' : ' [] '
1500
- ' %r ' : ' {} '
1501
- ' %w ' : ' [] '
1502
- ' %W ' : ' [] '
1502
+ " %i " : " [] "
1503
+ " %I " : " [] "
1504
+ " %r " : " {} "
1505
+ " %w " : " [] "
1506
+ " %W " : " [] "
1503
1507
1504
1508
Style/PercentQLiterals :
1505
1509
Enabled : false
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
spec . require_paths = [ "lib" ]
24
24
spec . metadata [ "rubygems_mfa_required" ] = "true"
25
25
26
- spec . add_dependency "rubocop" , "~> 1.66 .0"
26
+ spec . add_dependency "rubocop" , "~> 1.67 .0"
27
27
28
28
spec . add_dependency "lint_roller" , "~> 1.0"
29
29
spec . add_dependency "standard-custom" , "~> 1.0.0"
You can’t perform that action at this time.
0 commit comments