We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running autocorrect bundle exec strong_version -a removes the trailing directives and comments.
bundle exec strong_version -a
Instead it deletes the require statement and whatever comment trailing after that
- gem 'rubocop', require: false # Should just add version constraint + gem 'rubocop', '~> 1.62'
expected result
- gem 'rubocop', require: false # Should just add version constraint + gem 'rubocop', '~> 1.62', require: false # Should just add version constraint
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Running autocorrect
bundle exec strong_version -a
removes the trailing directives and comments.Instead it deletes the require statement and whatever comment trailing after that
expected result
The text was updated successfully, but these errors were encountered: