Skip to content
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

Style/SpaceAroundOperators Autofix Joins Lines #2538

Closed
jfelchner opened this issue Dec 23, 2015 · 6 comments
Closed

Style/SpaceAroundOperators Autofix Joins Lines #2538

jfelchner opened this issue Dec 23, 2015 · 6 comments

Comments

@jfelchner
Copy link
Contributor

If you autofix Style/SpaceAroundOperators with this code:

my_string = 'Here is a'+
            'joined string'+
            'across three lines'

it gets autofixed to this:

my_string = 'Here is a' + 'joined string' + 'across three lines'

instead of this:

my_string = 'Here is a' +
            'joined string' +
            'across three lines'
@alexdowad
Copy link
Contributor

Just pushed a fix.

@alexdowad
Copy link
Contributor

Thanks for the report, by the way!

@jfelchner
Copy link
Contributor Author

@alexdowad man you've been killin it lately! Thanks!

@alexdowad
Copy link
Contributor

😄 Just trying to push this gem forward to the 1.0 release. There is a lot to do. Clearing all these issues is just the first step.

@jfelchner
Copy link
Contributor Author

Well then I'll try to keep mine down to a minimum. :) Let me know if you want to pair on any issues!

@alexdowad
Copy link
Contributor

Well then I'll try to keep mine down to a minimum.

No, please keep them coming. We need to find out about anything that doesn't work properly, or any serious "gaps" in what RC is able to check.

Let me know if you want to pair on any issues!

We definitely need more people working on the code. I would suggest that rather than pairing, if you would like to pick any issue which you are interested in working on, I can give you some guidance on how to start, and help if/when you get stuck.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants