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

keeps indenting if a json hash formatted keyword is used #67

Open
NullVoxPopuli opened this issue Feb 4, 2014 · 1 comment
Open

keeps indenting if a json hash formatted keyword is used #67

NullVoxPopuli opened this issue Feb 4, 2014 · 1 comment

Comments

@NullVoxPopuli
Copy link

before_save   O.new("v"),
    if: Proc.new { |p| [154, 1217].include?(p.account_id) }
after_save    O.new("v"),
    if: Proc.new { |p| [154, 1217].include?(p.account_id) }
after_find    O.new("v"),
    if: Proc.new { |p| p.attributes.include?("v") && [154, 1217].include?(p.account_id) }

becomes:

before_save   O.new("v"),
if: Proc.new { |p| [154, 1217].include?(p.account_id) }
    after_save    O.new("v"),
    if: Proc.new { |p| [154, 1217].include?(p.account_id) }
        after_find    O.new("v"),
        if: Proc.new { |p| proposal.attributes.include?("v") && [154, 1217].include?(p.account_id) }

the top code block is correct.

I think it's seeing the "if" keywoard, and just auto-indenting the line without looking at what if is

a condition starting with if: isn't actually valid.

@thoughtpunch
Copy link

👍

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