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

Separate imports from installed package and absolute imports of local module #60

Open
jacklimwenjie opened this issue Nov 9, 2021 · 2 comments
Labels
duplicate This issue or pull request already exists question Further information is requested

Comments

@jacklimwenjie
Copy link

Is your feature request related to a problem? Please describe.
Currently, the imports from an installed package and the absolute imports of the local modules are grouped together:

import { set } from "lodash";
import { Button } from "components/common";

import sum from "./sum";

Describe the solution you'd like
Ability to separate the imports from an installed package with the absolute imports of local modules:

import { set } from "lodash";

import { Button } from "components/common";

import sum from "./sum";
@daidodo
Copy link
Owner

daidodo commented Nov 12, 2021

Thanks for the feedback!

Could you define "imports from an installed package" and "absolute imports of the local modules"? How to distinguish them?

@daidodo daidodo added the question Further information is requested label Dec 18, 2021
@daidodo
Copy link
Owner

daidodo commented Dec 18, 2021

Might be a duplicate of #38.

@daidodo daidodo added the duplicate This issue or pull request already exists label Dec 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants