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
Hi,
I really appreciate your work 😄 I'd like to know if it is possible to join imports from same package.
example:
in the example I'd like to have:
import React, {useContext} from 'react';
instead of:
import React from 'react'; import {useContext} from 'react';
Thank you!
The text was updated successfully, but these errors were encountered:
I use prettier with prettier-plugin-organize-imports to format and sort/combine import statements.
Does a solution like that work for your project?
If you'd like to submit a pull request to implement this, I am open to it. The code that brings in the new import statements is here.
Sorry, something went wrong.
No branches or pull requests
Hi,
I really appreciate your work 😄 I'd like to know if it is possible to join imports from same package.
example:
showcase.mp4
in the example I'd like to have:
instead of:
Thank you!
The text was updated successfully, but these errors were encountered: