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
GraphQL/Ordered*
GraphQL/Ordered* cops autocorrection doesn't work correctly in classes with heredoc.
module Resolvers class Test < Resolvers::Base argument :test_2, Int argument :test_1, Int, description: <<~DESC heredoc example DESC end end
module Resolvers class Test < Resolvers::Base argument :test_1, Int, description: <<~DESC argument :test_2, Int heredoc example DESC end end
module Resolvers class Test < Resolvers::Base argument :test_1, Int, description: <<~DESC heredoc example DESC argument :test_2, Int end end
The text was updated successfully, but these errors were encountered:
[Fix DmitryTsepelev#108] Handle heredocs when reordering code
084b9bb
de57646
9ef5ece
No branches or pull requests
GraphQL/Ordered*
cops autocorrection doesn't work correctly in classes with heredoc.How it works
Before:
After:
Expected:
The text was updated successfully, but these errors were encountered: