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

rufo adds space to heredocs in argument lists, twice #188

Open
lastobelus opened this issue Nov 1, 2019 · 0 comments
Open

rufo adds space to heredocs in argument lists, twice #188

lastobelus opened this issue Nov 1, 2019 · 0 comments

Comments

@lastobelus
Copy link

lastobelus commented Nov 1, 2019

before formatting:

        csv_import.add_row_note!(
          ix,
          <<-EOM
            unable to find shopify variant by sku #{sku}
            found sku_map #{sku_map.id} with product #{shopify_product.id}, but there was no matching variant"
          EOM
        )

after first formatting:

        csv_import.add_row_note!(
          ix,
          <<-EOM
            unable to find shopify variant by sku #{sku}
            found sku_map #{sku_map.id} with product #{shopify_product.id}, but there was no matching variant"
          EOM
        
)

after second formatting:

        csv_import.add_row_note!(
          ix,
          <<-EOM
            unable to find shopify variant by sku #{sku}
            found sku_map #{sku_map.id} with product #{shopify_product.id}, but there was no matching variant"
          EOM

        
)

Subsequent formats maintain the third version.

See also #110.

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

1 participant