Skip to content

Commit 020a5e7

Browse files
authored
Merge pull request #274 from ruby-go-gem/dependabot/bundler/rubocop-1.72.1
Bump rubocop from 1.71.2 to 1.72.1
2 parents 9dc89f2 + 400cc55 commit 020a5e7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.golangci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
linters-settings:
2-
gofmt:
32
revive:
43
rules:
54
- name: exported
65
arguments:
76
- disableStutteringCheck
8-
testifylint:
9-
wrapcheck:
107

118
linters:
129
enable:

Gemfile.lock

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ GEM
3636
fileutils (1.7.3)
3737
i18n (1.14.7)
3838
concurrent-ruby (~> 1.0)
39-
json (2.9.1)
39+
json (2.10.1)
4040
language_server-protocol (3.17.0.4)
41+
lint_roller (1.1.0)
4142
listen (3.9.0)
4243
rb-fsevent (~> 0.10, >= 0.10.3)
4344
rb-inotify (~> 0.9, >= 0.9.10)
@@ -98,9 +99,10 @@ GEM
9899
rspec-support (3.13.1)
99100
rspec-temp_dir (1.1.1)
100101
rspec (>= 3.0)
101-
rubocop (1.71.2)
102+
rubocop (1.72.1)
102103
json (~> 2.3)
103-
language_server-protocol (>= 3.17.0)
104+
language_server-protocol (~> 3.17.0.2)
105+
lint_roller (~> 1.1.0)
104106
parallel (~> 1.10)
105107
parser (>= 3.3.0.2)
106108
rainbow (>= 2.2.2, < 4.0)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

33
module Example
4-
class GoStruct # rubocop:disable Lint/EmptyClass Methods are defined in ext/example/go_struct.go
4+
class GoStruct # rubocop:disable Lint/EmptyClass -- Methods are defined in ext/example/go_struct.go
55
end
66
end

ruby/testdata/example/test/example/tests_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class RbAttrTest < Test::Unit::TestCase
171171
assert { Example::Tests.protected_instance_methods(false).include?(:nop_rb_define_protected_method) }
172172
end
173173

174-
# rubocop:disable Style/GlobalVars this is test for global variable
174+
# rubocop:disable Style/GlobalVars -- this is test for global variable
175175
test ".rb_define_variable" do
176176
Example::Tests.rb_define_variable("$global_var", 1)
177177
assert { $global_var == 1 }

0 commit comments

Comments
 (0)