Merge pull request #6565 from jbampton/add-more-rubo-cops

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-06-25 17:54:18 +09:00
committed by GitHub
2 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -1,6 +1,12 @@
AllCops:
DisabledByDefault: true
TargetRubyVersion: 3.4.0
TargetRubyVersion: 3.4
Layout/AssignmentIndentation:
Enabled: true
Layout/BlockEndNewline:
Enabled: true
Layout/IndentationStyle:
Enabled: true
+2 -1
View File
@@ -330,7 +330,8 @@ assert('BS Block 27') do
3.times{|ib|
2.times{|jb|
sum += ib + jb
}}
}
}
assert_equal sum, 9
end