We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d665ef commit 8433662Copy full SHA for 8433662
.rubocop.yml
@@ -31,3 +31,5 @@ Naming/FileName:
31
Style/BlockDelimiters:
32
Exclude:
33
- "test/**/test_*.rb"
34
+Style/DoubleNegation:
35
+ Enabled: false
lib/functions_framework/server.rb
@@ -297,7 +297,7 @@ def show_error_details= show_error_details
297
if show_error_details.nil?
298
!::ENV["FUNCTION_DETAILED_ERRORS"].to_s.empty?
299
else
300
- show_error_details ? true : false
+ !!show_error_details
301
end
302
303
0 commit comments