You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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";
The text was updated successfully, but these errors were encountered:
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:
Describe the solution you'd like
Ability to separate the imports from an installed package with the absolute imports of local modules:
The text was updated successfully, but these errors were encountered: