-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Fix Layout/IndentArray & Layout/IndentHash #1268
Conversation
:backtrace => e.backtrace, | ||
:exception => e.class | ||
} | ||
].to_json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious: Do we support Ruby < 1.9? Can we used { message: e.message }
colon syntax in Hashes? Are we already doing that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The lowest we support is 2.2 now. I can try changing it. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@olleolleolle Hash syntax is handled by the Style/HashSyntax cop, but I'll change this one now. :)
@olleolleolle all set on this one! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I support this change.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Details
Motivation and Context
Working to help solve issue 1021!
How Has This Been Tested?
bundle exec rake
👍Types of changes