We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c2259e commit e042202Copy full SHA for e042202
.rubocop.yml
@@ -64,6 +64,7 @@ Style/DateTime:
64
Style/DisableCopsWithinSourceCodeDirective:
65
AllowedCops:
66
- Style/StringHashKeys
67
+ - Style/GlobalVars
68
69
Style/Documentation:
70
Exclude:
test/test_cassandra.rb
@@ -4,7 +4,9 @@
4
5
class CassandraTest < Minitest::Test
6
def teardown
7
+ # rubocop:disable Style/GlobalVars
8
Ilios::Cassandra.log_level($default_test_log_level)
9
+ # rubocop:enable Style/GlobalVars
10
end
11
12
def test_log_level
0 commit comments