First off great extension. This was exactly what I was looking for.
I am thinking if we can add an automatic import sorting feature with the option to add comments for different import categories. This feature should be applicable to all TypeScript projects and will provide developers with cleaner and more maintainable codebases.
Example:
// App.tsx
// React imports
import React, { useState, useEffect } from "react";
// Third-party library imports
import { useSession } from "next-auth/react";
import { useRouter } from "next/navigation";
// Local module imports
import { useCustomHook } from "./Hooks";
import { Post } from "@types";
// Components
import Form from "@components/Form";
// Custom styles
import "./styles.css";
First off great extension. This was exactly what I was looking for.
I am thinking if we can add an automatic import sorting feature with the option to add comments for different import categories. This feature should be applicable to all TypeScript projects and will provide developers with cleaner and more maintainable codebases.
Example: