Skip to content

Commit

Permalink
Auto corrected by following Format Ruby Code
Browse files Browse the repository at this point in the history
  • Loading branch information
Awesome Code committed Jan 13, 2024
1 parent fcd881c commit 078f310
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/synvert/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,12 @@ def run_option_parser(args)
opts.on '--tab-width TAB_WIDTH', 'prefer tab width, it uses 2 by default' do |tab_width|
Core::Configuration.tab_width = tab_width.to_i
end
opts.on '--loose', 'loose mode, it ignores ruby version and gem version check, it uses strict mode by default' do |_loose|
opts.on '--loose',
'loose mode, it ignores ruby version and gem version check, it uses strict mode by default' do |_loose|
Core::Configuration.strict = false
end
opts.on '--test-result TEST_RESULT', 'result format of test, it can be actions or new_source, action is by default' do |test_result|
opts.on '--test-result TEST_RESULT',
'result format of test, it can be actions or new_source, action is by default' do |test_result|
Core::Configuration.test_result = test_result
end
opts.on '-v', '--version', 'show this version' do
Expand Down

0 comments on commit 078f310

Please sign in to comment.