Prettier - Dependency import order
Enforce a consistent order for import statements in JS/TS files with Prettier.
To enable this you need to add the following dependencies
// .prettierrc
{
"importOrder": [
"<THIRD_PARTY_MODULES>",
"interface",
"(?=content|api)",
"data/translations/",
"context/",
"mock/",
"config",
"utils/",
"hooks/",
"(components/|./index)",
".svg",
"^../(.*)$",
"(?=./prepare|./styles.module.scss)"
],
"importOrderSeparation": true
}