Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
David Heyer committed Nov 1, 2024
1 parent c76419e commit 7dc8ddd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/taste-tester
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,11 @@ MODES:
end

opts.on(
"-b", "--bundle BUNDLE_SETTING", ['true', 'false', 'compatible'], "Bundle mode setting"
'-b', '--bundle BUNDLE_SETTING', ['true', 'false', 'compatible'], 'Bundle mode setting'
) do |bundle_setting|
if ['true', 'false'].include?(bundle_setting)
bundle_setting = bundle_setting == 'true'
end
if ['true', 'false'].include?(bundle_setting)
bundle_setting = bundle_setting == 'true'
end
options[:bundle] = bundle_setting

Check failure on line 419 in bin/taste-tester

View workflow job for this annotation

GitHub Actions / ruby (2.5)

Layout/IndentationConsistency: Inconsistent indentation detected.

Check failure on line 419 in bin/taste-tester

View workflow job for this annotation

GitHub Actions / ruby (2.6)

Layout/IndentationConsistency: Inconsistent indentation detected.

Check failure on line 419 in bin/taste-tester

View workflow job for this annotation

GitHub Actions / ruby (2.7)

Layout/IndentationConsistency: Inconsistent indentation detected.
end
end
Expand Down

0 comments on commit 7dc8ddd

Please sign in to comment.