File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
linters-settings :
2
- gofmt :
3
2
revive :
4
3
rules :
5
4
- name : exported
6
5
arguments :
7
6
- disableStutteringCheck
8
- testifylint :
9
- wrapcheck :
10
7
11
8
linters :
12
9
enable :
Original file line number Diff line number Diff line change 36
36
fileutils (1.7.3 )
37
37
i18n (1.14.7 )
38
38
concurrent-ruby (~> 1.0 )
39
- json (2.9 .1 )
39
+ json (2.10 .1 )
40
40
language_server-protocol (3.17.0.4 )
41
+ lint_roller (1.1.0 )
41
42
listen (3.9.0 )
42
43
rb-fsevent (~> 0.10 , >= 0.10.3 )
43
44
rb-inotify (~> 0.9 , >= 0.9.10 )
98
99
rspec-support (3.13.1 )
99
100
rspec-temp_dir (1.1.1 )
100
101
rspec (>= 3.0 )
101
- rubocop (1.71.2 )
102
+ rubocop (1.72.1 )
102
103
json (~> 2.3 )
103
- language_server-protocol (>= 3.17.0 )
104
+ language_server-protocol (~> 3.17.0.2 )
105
+ lint_roller (~> 1.1.0 )
104
106
parallel (~> 1.10 )
105
107
parser (>= 3.3.0.2 )
106
108
rainbow (>= 2.2.2 , < 4.0 )
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
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
5
5
end
6
6
end
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ class RbAttrTest < Test::Unit::TestCase
171
171
assert { Example ::Tests . protected_instance_methods ( false ) . include? ( :nop_rb_define_protected_method ) }
172
172
end
173
173
174
- # rubocop:disable Style/GlobalVars this is test for global variable
174
+ # rubocop:disable Style/GlobalVars -- this is test for global variable
175
175
test ".rb_define_variable" do
176
176
Example ::Tests . rb_define_variable ( "$global_var" , 1 )
177
177
assert { $global_var == 1 }
You can’t perform that action at this time.
0 commit comments