Skip to content

Commit 02aa284

Browse files
authored
Merge pull request rails#54678 from koic/use_rubocop_plugin
Use RuboCop plugin
2 parents 19f0b81 + 0720124 commit 02aa284

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed

.rubocop.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
require:
1+
plugins:
22
- rubocop-minitest
3-
- rubocop-packaging
43
- rubocop-performance
54
- rubocop-rails
65
- rubocop-md
76

7+
require:
8+
- rubocop-packaging
9+
810
AllCops:
911
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
1012
# to ignore them, so only the ones explicitly set in this file are enabled.

Gemfile.lock

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ GEM
329329
addressable (~> 2.8)
330330
childprocess (~> 5.0)
331331
libxml-ruby (5.0.3)
332+
lint_roller (1.1.0)
332333
listen (3.9.0)
333334
rb-fsevent (~> 0.10, >= 0.10.3)
334335
rb-inotify (~> 0.9, >= 0.9.10)
@@ -480,33 +481,38 @@ GEM
480481
retriable (3.1.2)
481482
rexml (3.4.0)
482483
rouge (4.5.1)
483-
rubocop (1.70.0)
484+
rubocop (1.72.2)
484485
json (~> 2.3)
485-
language_server-protocol (>= 3.17.0)
486+
language_server-protocol (~> 3.17.0.2)
487+
lint_roller (~> 1.1.0)
486488
parallel (~> 1.10)
487489
parser (>= 3.3.0.2)
488490
rainbow (>= 2.2.2, < 4.0)
489491
regexp_parser (>= 2.9.3, < 3.0)
490-
rubocop-ast (>= 1.36.2, < 2.0)
492+
rubocop-ast (>= 1.38.0, < 2.0)
491493
ruby-progressbar (~> 1.7)
492494
unicode-display_width (>= 2.4.0, < 4.0)
493-
rubocop-ast (1.37.0)
495+
rubocop-ast (1.38.1)
494496
parser (>= 3.3.1.0)
495-
rubocop-md (1.2.4)
496-
rubocop (>= 1.45)
497-
rubocop-minitest (0.36.0)
498-
rubocop (>= 1.61, < 2.0)
499-
rubocop-ast (>= 1.31.1, < 2.0)
497+
rubocop-md (2.0.0)
498+
lint_roller (~> 1.1)
499+
rubocop (>= 1.72.1)
500+
rubocop-minitest (0.37.1)
501+
lint_roller (~> 1.1)
502+
rubocop (>= 1.72.1, < 2.0)
503+
rubocop-ast (>= 1.38.0, < 2.0)
500504
rubocop-packaging (0.5.2)
501505
rubocop (>= 1.33, < 2.0)
502-
rubocop-performance (1.23.1)
503-
rubocop (>= 1.48.1, < 2.0)
504-
rubocop-ast (>= 1.31.1, < 2.0)
505-
rubocop-rails (2.28.0)
506+
rubocop-performance (1.24.0)
507+
lint_roller (~> 1.1)
508+
rubocop (>= 1.72.1, < 2.0)
509+
rubocop-ast (>= 1.38.0, < 2.0)
510+
rubocop-rails (2.30.3)
506511
activesupport (>= 4.2.0)
512+
lint_roller (~> 1.1)
507513
rack (>= 1.1)
508-
rubocop (>= 1.52.0, < 2.0)
509-
rubocop-ast (>= 1.31.1, < 2.0)
514+
rubocop (>= 1.72.1, < 2.0)
515+
rubocop-ast (>= 1.38.0, < 2.0)
510516
rubocop-rails-omakase (1.0.0)
511517
rubocop
512518
rubocop-minitest

0 commit comments

Comments
 (0)