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
Sometimes, when the parts of a range literal are long, it is best to split them up over multiple lines. While I agree that this is bad:
a ... b
I have the following in my code:
@trigger.check([DateTime.parse('2014-05-12 04:00')... DateTime.parse('2014-05-13 04:00')])
which RuboCop flags as incorrect. Is there a better way to do what I need, or do we need to improve the cop?
The text was updated successfully, but these errors were encountered:
85f2b8d
No branches or pull requests
Sometimes, when the parts of a range literal are long, it is best to split them up over multiple lines. While I agree that this is bad:
I have the following in my code:
which RuboCop flags as incorrect. Is there a better way to do what I need, or do we need to improve the cop?
The text was updated successfully, but these errors were encountered: