I would like to merge all my es6 imports from a single module to one single import in my react project.
Example: Convert this
import { Title } from "@mantine/core";
import { Center } from "@mantine/core";
import { Divider } from "@mantine/core";
to
import { Center, Divider, Title } from "@mantine/core";
Is the a eslint plugin/rule to achieve this?