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

Fix indent of JSX in lists in JSX #13

Merged
merged 1 commit into from
Mar 13, 2024

Conversation

XiNiHa
Copy link
Contributor

@XiNiHa XiNiHa commented Mar 13, 2024

Initial checklist

  • I read the support docs
  • I read the contributing guide
  • I agree to follow the code of conduct
  • I searched issues and couldn’t find anything (or linked relevant results below)
  • If applicable, I’ve added docs and tests

Description of changes

This fixes an issue where the following code input:

<JSX>
  - list item

    <JSX>
      content
    </JSX>
</JSX>

gets formatted like this:

<JSX>
  - list item

      <JSX>
        content
      </JSX>
</JSX>

I'm upstreaming the patch from our repo (with a slight modification for better performance) and the patch worked well inside our codebase.

I've tried to add a test for the change, but the test itself wasn't possible to run in my environment even on main because of the TSC errors of mismatching acorn versions. Maybe it's because of having the lockfile disabled, so the versions diverge? nevermind, looks like using npm forced dependencies to share the same copies of dependencies. Will add a test soon Done!

@github-actions github-actions bot added the 👋 phase/new Post is being triaged automatically label Mar 13, 2024

This comment has been minimized.

@XiNiHa XiNiHa force-pushed the fix/list-item-indent branch from 303af2a to 4316a1a Compare March 13, 2024 05:59
@github-actions github-actions bot added 🤞 phase/open Post is being triaged manually and removed 👋 phase/new Post is being triaged automatically labels Mar 13, 2024
Copy link
Member

@wooorm wooorm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@wooorm wooorm changed the title Fix indentation of JSX inside of list item inside of JSX Fix indent of JSX in lists in JSX Mar 13, 2024
@wooorm wooorm merged commit 04dffd3 into syntax-tree:main Mar 13, 2024
4 checks passed
@wooorm wooorm added the 💪 phase/solved Post is done label Mar 13, 2024

This comment has been minimized.

@github-actions github-actions bot removed the 🤞 phase/open Post is being triaged manually label Mar 13, 2024
@wooorm
Copy link
Member

wooorm commented Mar 13, 2024

Thanks, released, also fixed support for block quotes.

@XiNiHa XiNiHa deleted the fix/list-item-indent branch March 13, 2024 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💪 phase/solved Post is done
Development

Successfully merging this pull request may close these issues.

2 participants